Node JS (NPM)

Package manager: npm

Framework
Node JS (NPM)
Category
Languages
Publisher
Jetify
{
  "packages": [
    "nodejs@18"
  ],
  "shell": {
    "init_hook": [
      "npm install"
    ],
    "scripts": {
      "run_test": "npm run start"
    }
  }
}

NodeJS

Most NodeJS Projects will install their dependencies locally using NPM or Yarn, and thus can work with Devbox with minimal additional configuration. Per project packages can be managed via NPM or Yarn.

Example Repo

Open In Devspace

Adding NodeJS to your Shell

devbox add nodejs, or in your devbox.json:

  "packages": [
    "nodejs@18"
  ],

This will install NodeJS 18, and comes bundled with npm. You can find other installable versions of NodeJS by running devbox search nodejs. You can also view the available versions on Nixhub

Installing Global Packages

In some situations, you may want to install packages using npm install --global. This will fail in Devbox since the Nix Store is immutable.

You can instead install these global packages by adding them to the list of packages in your devbox.json. For example: to add yalc and pm2:

{
    "packages": [
        "nodejs@18",
        "nodePackages.yalc@latest",
        "nodePackages.pm2@latest"
    ]
}
README.md

Level up your dev environment

No need to switch your style. Devbox works with any coding language, so you can get results as you write.
PREPARE FOR LAUNCH

Plans for teams of any size

Jetify Cloud offers pricing plans for Solo Developers to Large Enterprises, and everything in between. All plans include free credits, and you are only billed for what you use. Need something custom? Contact our team and we can help.
YOUR INPUT COUNTS

Join the community

Discuss ideas, uses and builds with the Jetify team and others.