A node.js module that just greets the world. Small test package made to investigate creating npm modules with in-built typescript support. Main goal of publishing this is as an example for the underlying structure.
npm install greetworld --save
var _g = require("greetworld");
_g.Greet();
Output ---> 'HELLO WORLDDDDDDD!!'
import {Greet} from 'greetworld';
Greet();
Output ---> 'HELLO WORLDDDDDDD!!'
npm test