Demonstration for creating node module and using as dependency
npm install --save ../colors"dependencies": {
"colors": "file:../colors"
}const colors = require('colors');
const _color = colors.getRandomColor();
console.log(`Color name ${_color.name} and HTML code is ${_color.code}`);If your local module is in heavy development, continually updating packages can be tedious. An alternative would be to link the modules. Linking a module ensures that any updates to the module are immediately reflected in the applications using it.
- Uninstall local module from sampleProject
$ npm un colors
- Create the global link
$ cd ../colors$ sudo npm link
- Once complete, shell will output
Output : /usr/local/lib/node_modules/colors -> /home/USER/colors
- Return to project folder and link the package
$ cd ../sampleProjectsudo npm link colors
- Shell Output
Output : /home/USER/sampleProject/node_modules/colors -> /usr/local/lib/node_modules/colors -> /home/USER/colors