What is REST ?

October 5, 2017 admin 0

REST is an architectural style which is based on web-standards and the HTTP protocol. The REST architectural style was initially […]

Creating Custom Modules in Nodejs

November 24, 2016 admin 0

app.js var hello = require(‘./hello.js’); console.log(hello.sayHelloInEnglish()); console.log(hello.sayHelloInSpanish()); hello.js var hello = { sayHelloInEnglish : function() { return ‘Hello’; }, sayHelloInSpanish […]