firstpacketmodule
v1.0.1
Published
Print hello world
Downloads
4
Readme
firstpacketmodule
Installation
npm install firstpacketmodule --save
Usage
JavaScript
var firstmodule = require('firstpacketmodule');
var output = firstmodule.helloWorldFunction();
console.log(output);
Output should be 'Hello World - ALL'
AMD
exports.helloWorldFunction= function()
{
console.log("Hello World - ALL");
};
Test
npm run test