1.0.5 • Published 2 years ago

hello-npm-tito v1.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

hello-npm-tito

A Simple Hello World Example Package

Installation

Install via NPM:

npm install hello-npm-tito

Usage

javascript

var myApp = require("hello-npm-tito");

myApp.printMsg(); // print and return " Hello World! " 

TypeScript

import * as myApp from 'hello-npm-tito';

myApp.printMsg(); // print and return " Hello World! "