Skip to content

Instantly share code, notes, and snippets.

@bugyt
Last active January 27, 2016 19:30
Show Gist options
  • Save bugyt/382e7a95ab000e6e236a to your computer and use it in GitHub Desktop.
Save bugyt/382e7a95ab000e6e236a to your computer and use it in GitHub Desktop.

Installing Node.js

Arch Linux

Node.js and npm packages are available in the Community Repository.

pacman -S nodejs npm

Debian

curl -sL https://deb.nodesource.com/setup_5.x | sudo -E bash -

sudo apt-get install -y nodejs

Check node & npm version

node --version && npm --version

Installing Yeoman

sudo npm install -g yo

Yeoman AngularJS generator

Install yo, grunt-cli, bower, generator-angular and generator-karma:

npm install -g grunt-cli bower yo generator-karma generator-angular

Make a new directory, and cd into it:

mkdir my-new-project && cd $_    

Run yo angular, optionally passing an app name:

yo angular [app-name]

Run grunt for building and grunt serve for preview.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment