Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

As I can see in https://npmjs.org/doc/config.html one way to expose config section of package.json to environment variables is use npm start command.

I found modules that loads package.json file as JSON and export config property after that. But the easiest way is define all configuration as module and require it on demand. Am I right? Any suggestions?

share|improve this question

1 Answer

up vote 2 down vote accepted

You can also load the entire package.json as a module with require('./package.json') and the entire JSON object will be that module's exports, so you can do console.log(require('./packages.json').version);, for example.

share|improve this answer
Thanks. Works like a charm. – Vladimir Kuznetsov Jan 25 at 5:49
@VladimirKuznetsov can you accept this answer then, please? That way people won't read the question unnecessarily plus I get delicious reputation points. – Peter Lyons Jan 25 at 16:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.