Simple .env file parser for Nim
nimble install https://github.com/TheBoringDude/nenv.gitimport nenv
import os
loadEnv()
echo getEnv("HELLO")
# get values in their respective types
# .. these functions will throw ValueError if
# .. their values can't be parsed
echo typeof getEnvInt("NUM")
echo typeof getEnvFloat("DECIMAL")
echo typeof getEnvBool("BOOL")