• Stars
    star
    124
  • Rank 287,164 (Top 6 %)
  • Language
    JavaScript
  • Created over 10 years ago
  • Updated over 7 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Node js examples for beginners.

nodejs

Node js sample codes for beginners. We can get output of every nodejs codes using terminal. like
$ node mysql.js

Install latest nodejs

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

Install latest NPM

$ sudo npm install npm-latest

Install postgres nodejs driver

$ sudo npm install pg

Install mysql nodejs driver

$ sudo npm install mysql
more help https://www.npmjs.org/package/mysql

Install mongodb nodejs driver

$ sudo npm install mongodb
$ sudo npm install mongoose
more help http://docs.mongodb.org/ecosystem/drivers/node-js/

Install sqlite nodejs driver

$ sudo npm install sqlite3
more help https://www.npmjs.org/package/sqlite3

Create Chat server:

tcp_server/chat_app/server.js -> run this command in terminal.

$ node server.js

then now open two other terminals so now there are theree terminals one is server and other two terminals are clients. Please type this command in both client terminals.

$ nc localhost 4002

Now type anything in first client terminal and the result will be show in second client terminal. Type anything in second client terminal and result will be show in first client terminal. please view this image
https://github.com/narayand4/nodejs/blob/master/tcp_server/chat_app/Screenshot%20from%202014-07-29%2015:55:30.png

Node SASS lib

$ sudo npm install node-sass