Social power

GIT

$ git init
$ git status
$ git add
$ git commit
$ git push
$ git pull
$ git checkout -b <branch_name>
$ git merge <branch_name>
$ git log
$ git reset
$ git revert
$ git fetch

Git references


NVM - Node Version Manager


$ . ~/.nvm/nvm.sh
$ nvm install v0.10.24
$ nvm use v0.8.14
$ nvm help :)
$ ls ~/.nvm
alias
nvm.sh
README.markdown
src
v0.10.12
v0.10.18
v0.11.4
v0.4.12
v0.6.14
v0.6.18
v0.6.19
v0.6.6


var http = require('http');
http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/plain'});
  res.end('Hello World\n');
}).listen(1337, '127.0.0.1');
console.log('Server running at http://127.0.0.1:1337/');

Nodejs' Architecture


npm

Node packages 53,818 vs 68,528 Ruby gems 
dated  07.01.2014


$ npm install
$ npm install -g
$ npm install <name> --save
$ npm shrinkwrap

Other repositories and packages




TEAM UP

Next


1. fork github repo
2. install MongoDB
3. find suitable node frameworks and/or packages

node-socialpower class 1

By outbounder

node-socialpower class 1

  • 647