mod_helloworld

This is a Node.js module to print Hello World in the console


License
BSD-2-Clause
Install
npm install mod_helloworld@1.0.3

Documentation

mod_helloworld

This is a Node.js module to print Hello World in the console

Installation and Testing

  • Create a new project folder
  • cd into the directory from the command line
  • Install the mod_helloworld package using the following command
      npm install mod_helloworld --save
  • Create a test.js file in the directory and copy this code below
    var helloworld = require('mod_helloworld');
    helloworld.HelloWorld();
  • Run the following command in the command line
      node test.js

    Output

      Hello World!!!