h8d
v1.0.4
Published
My First NPM Package
Downloads
3
Maintainers
Readme
h8d || Hello World
This is my first NPM Package it just prints Hello World!!! in console
Installation
npm i h8d
How to Use
const helloWorld = require("h8d");
helloWorld();
Below is the code in the h8d index.js file
function h8d() {
return console.log("Hello World!!!");
}
module.exports = h8d;