Sample library to learn how to create npm modules
npm install @feelpop/random-helloRandomly greets any given string.
Features
* Created to learn how to publish packages in npm
* Very simple
* Supports both ECMAscript and CommonsJS modules
```
const hello = require("@feelpop/random-hello")
console.log(hello.hello("CommonsJS"));
```
import { hello } from "@feelpop/random-hello";
console.log(hello("ECMAScript"));