Search code examples
node.jsnpmnpm-package

how to Include a npm package in my npm package


i am create a npm package and i want date-npm package for my npm package how to include this package to my npm package,any way?


Solution

  • Just execute

    npm install date-npm
    

    in your package.

    Once your package is published, anyone installing your package, like:

    npm install your-groovy-package-here
    

    will have date-npm, as well as any other dependencies your package might have, installed along with it.