##node_study
node.js study examples
Examples are from nodeschool.io. All the additional testing data is mine.
##Content
helloworld- basic node.js programbaby_steps- simple math inside the programi_o- first I/O, basic input/output programasynch_i_o- asynchronous input/output programfiltered_Ls- program to make directory listing with the prompted extensionsmake_it_moduLar- creating custom module and use it in the programhttp_client- getting the get request on the prompted website and outputting the resulthttp_collect- collecting info from the provided URL GET requestjuggling_async- provide 3 URLs and put them in ordertime_server- program listens on TCP connection, write current date for each connectionhttp_file_server- HTTP server that serves the same file it receives with the requesthttp_uppercaserer- HTTP server that receives only POST requests,translates lowercase to uppercasehttp_JSON_API_server- output provided date data to the JSON filesample_programs- sample node.js programs that could be useful in the future projects
##How to
How to install: node.js you can find here nodejs.org
Any package can be installed by using
npm install- npm packages
##Thanks My personal thanks to nodeschool.io for a great and easy to use material for learning node.js