Can I specify optional module dependencies in npm

2019-05-02 01:05发布

I have a service where I want to allow users at install-time to specify which persistence engine to use, i.e. file-based, MongoDB, or Redis, and I'm looking for some npm magic where you only download the necessary modules (none, mongodb, or redis, respectively).

Is this possible? I can't find any options other than defining dependencies and devDependencies in package.json, and that's not appropriate for this.

Note also that while the mongodb and redis modules may be relatively small, consider an alternate case where you may optionally need Java for RMI communication.

Thanks!

标签: node.js npm
1条回答
狗以群分
2楼-- · 2019-05-02 01:35

You might want to use a post-install script, and then install them then.

You can install things using the npm module programmatically.

So, you might do something like this:

var npm = require('npm'); // make sure npm is in your package.json!
npm.load({/* some object properties, if needed */}, function(err) {
    if (err) {return handleError(err)}
    if (usingMongoDB) {
        npm.commands.install(['mongodb'], function(err){
        if (err) {return handleError(err)}
        console.log('mongodb successfully installed');
    });
});

Now, i have never done something like this, so i recommend you look at the documentation for programmatic npm install, and also load.

查看更多
登录 后发表回答