Code Monkey home page Code Monkey logo

Comments (6)

jstewmon avatar jstewmon commented on August 24, 2024

I remember being burned by this as well. This scenario is not well documented, and perhaps an update should be made since I am not the only one who expected the library to work the way your sample is written.

Anyway, the way things currently stand...

You can only use each of the convenience (argv, env, file, defaults, overrides) methods once because each uses it's name as the key for the config store. If you want to use multiple files, you need to add them like this:

var conf = require('nconf');
conf.add('env-file', {type: 'file', file: path.join(path.resolve(__dirname, '../config'), (conf.get('NODE_ENV') || 'development') + '.json')});
conf.add('default-file', {type: 'file', file: path.resolve(__dirname, '../config/default.json')});

The important part is giving the config store a unique key, which is the first argument passed to add.

I'm surprised this issue sat for a month without a response. What's up, @flatiron ? @indexzero ? @mmalecki ? Is this lib being maintained?

from nconf.

indexzero avatar indexzero commented on August 24, 2024

@jstewmon Yes. It is. Unfortunately life can't be all open-source maintenance all the time =D

from nconf.

indexzero avatar indexzero commented on August 24, 2024

@jstewmon A pull-request to fix this issue would make you a hero in my book.

from nconf.

andrewrk avatar andrewrk commented on August 24, 2024

Fwiw, I solved this problem by deploying my app with npm and using npm's
built-in config framework.

from nconf.

jstewmon avatar jstewmon commented on August 24, 2024

@indexzero Watch out - that commit has that showHelp change in it too. Did you ever put that elsewhere? I'd like to align my master with flatiron, but I'm using that feature in a project.

from nconf.

pksunkara avatar pksunkara commented on August 24, 2024

Fixed

from nconf.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.