Sha256: 2e91f4a1a4aa78ef7fcdfaf41423ab2f3a7e393965dbaf720e9744d730db4048
Contents?: true
Size: 1.09 KB
Versions: 135
Compression:
Stored size: 1.09 KB
Contents
There are a couple of ways to install [NodeJS](http://nodejs.org): * via an [Installer or Binaries](https://nodejs.org/en/download/) * via [package managers](https://nodejs.org/en/download/package-manager/) Both options have selections for Windows, MacOS, and Linux. If you've used the official installer, your `PATH` should have been automatically configured, but if your shell has trouble locating your globally installed modules—or if you build Node.js from source—update your `PATH` to include the `npm` binaries by adding the following to either `~/.bash_profile` or `~/.zshrc`: ```bash $ export PATH=/usr/local/share/npm/bin:$PATH ``` Each assignment needs some tools to run the tests: * [Jest](https://facebook.github.io/jest/): a test runner based on Jasmine * [Babel](https://github.com/babel/babel): to transpile ECMAScript 2015 code to ECMAScript 5 * [ESLint](http://eslint.org/) (optional): to perform several static analysis and coding style checks to your ECMAScript code. They can be installed running this command within each assignment directory: ```bash $ npm install ```
Version data entries
135 entries across 135 versions & 1 rubygems