/greetworld

Simple hello world program. Built to test npm packaging.

Primary LanguageJavaScriptMIT LicenseMIT

greetworld

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.

Installation

npm install greetworld --save

Usage

Javascript

var _g = require("greetworld");
_g.Greet();
Output ---> 'HELLO WORLDDDDDDD!!'

Typescript

import {Greet} from 'greetworld';
Greet(); 
Output ---> 'HELLO WORLDDDDDDD!!'

Test

npm test