Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

process.env not parsed #7

Closed
eusonlito opened this issue Jun 28, 2018 · 1 comment
Closed

process.env not parsed #7

eusonlito opened this issue Jun 28, 2018 · 1 comment

Comments

@eusonlito
Copy link

What's wrong with boolean parse?

require('dotenv').load();

const dotenvParseVariables = require('dotenv-parse-variables');

console.log(process.env);
process.env = dotenvParseVariables(process.env);
console.log(process.env);

result:

{
  "DEV": "true",
  "WWW": "http://localhost:3000",
  "PORT": "3000",
  "MONGODB_DSN": "mongodb://127.0.0.1/test",
  "MONGODB_DEBUG": "true"
}

{
  "DEV": "true",
  "WWW": "http://localhost:3000",
  "PORT": "3000",
  "MONGODB_DSN": "mongodb://127.0.0.1/test",
  "MONGODB_DEBUG": "true"
}
@eusonlito
Copy link
Author

Ok, #1 (comment)

The process.env object forces all of its properties to be of type string.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant