Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

simple-hello-world-example-2

Thanh19124MIT0.0.2

a simple hello world example

hello world

readme

simple-hello-world-example

A Simple Hello World Example Package

Installation

Install via NPM:

npm install simple-hello-world-example

Usage

javascript


var myApp = require("simple-hello-world-example");

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

TypeScript


import * as myApp from 'simple-hello-world-example';

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

License

This project is licensed under the terms of the MIT license.

changelog

Change Log

1.0.0 (2019/08/28)

  • Initial release