0.0.3 • Published 5 years ago
@acastemoreno/first-package v0.0.3
@acastemoreno/first-package
This is my first package (proof of concept) and greets.
Installation
With yarn
yarn add @acastemoreno/first-packageWith npm
npm install @acastemoreno/first-packageUsage
Import the module in your file js
import hello from "@acastemoreno/first-package"; //ESM
const hello = require("@acastemoreno/first-package"); //CommonJSYou will have available the function hello.
hello("amiguito");
("Hello amiguito");