Friday, 30 December 2016

Node Js Tutorials

Node Js Tutorials Node.js - Introduction Node.js - Installations Node.js - First Application Node.js - NPM (Node Package Manager) Node.js - Callbacks Concept Node.js - Event Loop Node.js - Event Emitter Node.js - Buffers Node.js - Streams Node.js - File System Node.js - Global Objects Node.js - Utility Modules Node.js - Web Module Node.js - Express Framework Node.js - RESTful API ...

Monday, 19 December 2016

Node.js - RESTful API

Node.js - RESTful API What is REST architecture? REST stands for REpresentational State Transfer. REST is web standards based architecture and uses HTTP Protocol. It revolves around resource where every component is a resource and a resource is accessed by a common interface using HTTP standard methods. REST was first introduced by Roy Fielding in 2000. A REST Server simply provides access to resources and REST client accesses and modifies the resources using HTTP protocol. Here each resource is identified by URIs/ global IDs. REST uses various...