@acastemoreno/first-package

My First package

Usage no npm install needed!

<script type="module">
  import acastemorenoFirstPackage from 'https://cdn.skypack.dev/@acastemoreno/first-package';
</script>

README

@acastemoreno/first-package

This is my first package (proof of concept) and greets.

Installation

With yarn

yarn add @acastemoreno/first-package

With npm

npm install @acastemoreno/first-package

Usage

Import the module in your file js

import hello from "@acastemoreno/first-package"; //ESM

const hello = require("@acastemoreno/first-package"); //CommonJS

You will have available the function hello.

hello("amiguito");
("Hello amiguito");