node.js - Possible to "npm install" code changes added since last version number change? -
this n00b npm question, i'm getting started here. apologies.
i'm using node-dbus npm module, latest version 0.2.0. see there have been code changes (one of want) added since last version number change.
do need ask author of package update version number can new stuff? permissible/possible me go in , update version number myself in github repo? or there clean way set dependencies
line in package.json
stuff has been added since last version number change?
i see it's supposed possible use "git remote url," far i'm unable make work. should doing? getting version number updated right direction?
thanks help.
steve
according the official npm documentation, can install package by:
npm install <githubname>/<githubrepo>[#<commit-ish>]
in case, should be:
npm install sidorares/node-dbus#<the-commit-that-contains-your-wanted-code>
you can add --save
command update package.json
on fly.
please aware not practice install modules source code directly might not stable version.
Comments
Post a Comment