I've been looking around for a Java maven equivalency for NodeJS but can't really seem to find one so I'm posting this question to see whether there're a combination of tools/framework I can use to build and deploy Node. The specific tasks I'm looking for is:
Any help would be greatly appreciated!!!
Npm does most of that for you.
Dependency handling:
package.json
for your project (see required contents or use npm init)npm install
will sort out and download all dependenciesDeploying:
node_modules
folder along or run npm install
on the serverPrivate/local libraries:
~/Projects/mylib
)mylib
folder and run npm link
npm install mylib
node_modules
To set up a private repository for your modules, follow these instructions
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With