Moving the blog to http://pmiacp4u.blogspot.com
Node.js Examples Node.js Examples : We shall go through examples of basics, fs module, mysql module, http module, url module, parsing json, etc. with Node.js. Node.js Example : Simple Node.js Example Following is a simple Node.js Example to print a message to console. verifyNode.js console . log ( "Hi there! This is Node.js!" ) $ node verifyNode . js Hi there ! This is Node . js ! Node.js Example : Create a Module Following is Node.js Example where we create a Calculator Node.js Module with functions add, subtract and multiply. And use the Calculator module in another Node.js file. calculator.js // Returns addition of two numbers exports . add = function ( a , b ) { return a + b ; }; // Returns difference of two numbers exports . subtract = function ( a , b )...
Comments
Post a Comment