A Simple Hello World Example Package
Install via NPM:
npm install simple-hello-world-example
var myApp = require("simple-hello-world-example");
var msg = myApp.printMsg(); // print and return " Hello World! "
import * as myApp from 'simple-hello-world-example';
let msg = myApp.printMsg(); // print and return " Hello World! "
This project is licensed under the terms of the MIT license.