Wednesday, 17 December 2014

Node.js with Meteor

# Installation guide



# node.js & npm installation:

apt-get install python-software-properties apt-add-repository ppa:chris-lea/node.js apt-get update
apt-get install nodejs
apt-get install npm


# Check node.js & npm version:

node -v
npm -v


# Install Meteor:

curl https://install.meteor.com | /bin/sh

# Create a project:

meteor create myapp

3 comments:

  1. what is NPM and Meteor, Could you mention a short description

    ReplyDelete
  2. Meteor(https://www.meteor.com/) is a JavaScript web app framework and written in Node.js.

    NPM is a javascript package manager for Node.js. NPM manages node application dependencies and it runs from command line.

    ReplyDelete