1.0.3 • Published 7 years ago

helloworldjs v1.0.3

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

helloworldjs

My first npm package. Just a module that allows you to print or get "Hello World" in different languages

Install

 npm install helloworldjs

Apis

  var greet = require('./helloworldjs');
   greet.greetCall('French'); // "Bonjour le monde"
   
   greet.greetCall('English'); // "Hello World"
   
greet.greetReturn("Spanish") // Returns "Hola Mundo"

console.log(greet.greetReturn("Spanish")); // "Hola Mundo" 

This is my first npm module. If you like this, kindly star it.