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:
- Being able to grab dependent modules for a checked out code NodeJS project (for ex. Express or stuff like that)
- Set up a private repository for NodeJS modules for in-house projects
- Package with dependencies and make releases of Node projects to a repository (sorta like war)
- Deploy a release to a remote box and fire up Node
Any help would be greatly appreciated!!!
npm install, restart node. Unlike Java world, you don't need a packaged .war file to deploy with in most cases. You can always copy over you npm packages if you want to deploy with them and not install at the location though.