Download and run the latest or last LTS version of Node.js. nvm
or another package manager may be helpful.
# You can find the suggested minimum version of node in package.json > engines > node
node -v
# Make sure you also installed npm with your node install
npm -v
npm may warn you about using a Node.js version that's too low for Rocketry. The suggested version of Node.js set in the package.json
is set rather high because of the use of async
/await
in tests. If you don't intend to run tests, it will most likely work on v6.x.x
, but it's not supported at this time.
npm install @rocketry/core
git clone https://github.com/rocketryjs/rocketry
cd rocketry/
npm install