Skip to content
This repository has been archived by the owner on Aug 10, 2020. It is now read-only.

Latest commit

 

History

History
34 lines (24 loc) · 1.05 KB

installation.md

File metadata and controls

34 lines (24 loc) · 1.05 KB

Installation

Installing Node.JS

Download and run the latest or last LTS version of Node.js. nvm or another package manager may be helpful.

Checking Your version

# 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

Installing the Module

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.

From npm

npm install @rocketry/core

From source

git clone https://github.com/rocketryjs/rocketry
cd rocketry/
npm install

Troubleshooting

See Troubleshooting - Installation