Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing Table of Contents, sections and return to top hyperlinks … #450

Open
wants to merge 1 commit into
base: gh-pages
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 37 additions & 22 deletions Nodejs/nodejs.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,17 @@
title: NodeJS
category: Frameworks
---

Resources For Learning Nodejs
==================================

## Table of Contents
* [About NodeJS](#about)
* [Courses, Tutorials](#courses-tutorials)
* [Links, Blogs, Websites](#links-blogs-websites)
* [Books](#books)
* [Github Repo](#github-repos)

# About NodeJS
## What is Nodejs?
----------------

Expand All @@ -25,30 +32,38 @@ Node.js is a platform built on Chrome's JavaScript runtime for easily building f

+ Node.js uses the V8 engine developed by Google which compiles JavaScript into native machine code and runs at lightning speed. Node.js does not jumble up with creating separate threads involving locking headache but it rather has single thread i.e. the event loop which is responsible for all the asynchronous I/O operations.

# Courses, Tutorials
* Tutorials
- [thenewBoston](https://www.youtube.com/watch?v=-u-j7uqU7sI&list=PL6gx4Cwl9DGBMdkKFn3HasZnnAqVjzHn_)
- [The Net Ninja](https://www.youtube.com/watch?v=w-7RQ46RgxU&list=PL4cUxeGkcC9gcy9lrvMJ75z9maRw4byYp)
- [Traversy media](https://www.youtube.com/watch?v=U8XF6AFGqlc)

+ Blogs for Beginners
+ [Node.js for beginners](https://code.tutsplus.com/tutorials/nodejs-for-beginners--net-26314)
+ [Node.js tutorials](http://www.tutorialsteacher.com/nodejs/nodejs-tutorials)
+ [Node.js in 3 days](https://www.guru99.com/node-js-tutorial.html)
+ [Making a local library webapp using Node,MongoDB and express library](https://developer.mozilla.org/en-US/docs/Learn/Server-side/Express_Nodejs)
[⬆ Back to top](#table-of-contents)

+ PDF Books For Node.js [Downloadable Links]
+ [Web Development with Nodejs,MongoDB](http://www.allitebooks.com/web-development-with-mongodb-and-nodejs/)
+ [Instant Nodejs](http://www.allitebooks.com/instant-node-js-starter/)
+ [Programming Web Applications with Node, Express and Pug](http://www.allitebooks.com/programming-web-applications-with-node-express-and-pug/)
+ [Nodejs Essentials](http://www.allitebooks.com/node-js-essentials/)
+ [Buliding APIs with Nodejs](http://www.allitebooks.com/building-apis-with-node-js/)
+ [Learning Node](http://www.allitebooks.com/learning-node-2nd-edition/)
+ [Nodejs Design Patterns](http://www.allitebooks.com/node-js-design-patterns/)
# Links, Blogs, Websites
* Blogs for Beginners
- [Node.js for beginners](https://code.tutsplus.com/tutorials/nodejs-for-beginners--net-26314)
- [Node.js tutorials](http://www.tutorialsteacher.com/nodejs/nodejs-tutorials)
- [Node.js in 3 days](https://www.guru99.com/node-js-tutorial.html)
- [Making a local library webapp using Node,MongoDB and express library](https://developer.mozilla.org/en-US/docs/Learn/Server-side/Express_Nodejs)

+ Video tutorials for learning Node.js
[⬆ Back to top](#table-of-contents)

+ [thenewBoston](https://www.youtube.com/watch?v=-u-j7uqU7sI&list=PL6gx4Cwl9DGBMdkKFn3HasZnnAqVjzHn_)
+ [The Net Ninja](https://www.youtube.com/watch?v=w-7RQ46RgxU&list=PL4cUxeGkcC9gcy9lrvMJ75z9maRw4byYp)
+ [Traversy media](https://www.youtube.com/watch?v=U8XF6AFGqlc)
# Books
- [Web Development with Nodejs,MongoDB](http://www.allitebooks.com/web-development-with-mongodb-and-nodejs/)
- [Instant Nodejs](http://www.allitebooks.com/instant-node-js-starter/)
- [Programming Web Applications with Node, Express and Pug](http://www.allitebooks.com/programming-web-applications-with-node-express-and-pug/)
- [Nodejs Essentials](http://www.allitebooks.com/node-js-essentials/)
- [Buliding APIs with Nodejs](http://www.allitebooks.com/building-apis-with-node-js/)
- [Learning Node](http://www.allitebooks.com/learning-node-2nd-edition/)
- [Nodejs Design Patterns](http://www.allitebooks.com/node-js-design-patterns/)

[⬆ Back to top](#table-of-contents)

+ Github repos and interactive tutorials for learning Node.js
# Github Repos
* Github repos and interactive tutorials for learning Node.js
- [Art of Node](https://github.com/maxogden/art-of-node)
- [Node School](https://nodeschool.io/)
- [Learn You Node.js](https://github.com/workshopper/learnyounode#learn-you-the-nodejs-for-much-win)

+[Art of Node](https://github.com/maxogden/art-of-node)
+[Node School](https://nodeschool.io/)
+[Learn You Node.js](https://github.com/workshopper/learnyounode#learn-you-the-nodejs-for-much-win)
[⬆ Back to top](#table-of-contents)