Sha256: 547b3e97ef4a2944bedff5f717c43202ce89a93491f18ec4b7ecbc6766300558
Contents?: true
Size: 1.24 KB
Versions: 101
Compression:
Stored size: 1.24 KB
Contents
**Windows and OS X users**: Install [Node.js](http://nodejs.org/) [via package manager](https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager). Windows users can use a paid version of Visual Studio, see below. **Linux users**: [Joyent maintains a document][linstall] that details how to get Node.js installed for a wide range of distributions and package managers. [linstall]: https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager Install `jasmine-node` and `coffee`: ```bash $ npm install jasmine-node coffeescript -g ``` Depending on your setup, you may need super user privileges to install an `npm` module globally. This is the case if you've used the official installer linked to above. If NPM gives you an error saying you don't have access, add `sudo` to the command above: ```bash $ sudo npm install jasmine-node coffeescript -g ``` 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 ```
Version data entries
101 entries across 101 versions & 1 rubygems