Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 392 Bytes

File metadata and controls

23 lines (19 loc) · 392 Bytes

#hello-world-classic An npm module that prints the classic 'hello, world'

Here is the entire code:

module.exports = function() {
  console.log('hello, world')
}

#Install

$ npm install hello-world-classic

#Usage

var hello = require('hello-world-classic')
hello()

#License MIT