1.1.0 • Published 3 years ago

greetworld v1.1.0

Weekly downloads
12
License
SEE LICENSE IN LI...
Repository
github
Last release
3 years ago

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