This is a simple npm package that demonstrates the GitHub Package Registry.
Before installing, make sure to authenticate with GitHub Package Registry or to use a .npmrc file. See "Configuring npm for use with GitHub Package Registry."
$ npm install @deniszola/package
Or add this package to your package.json file:
"dependencies": {
"@deniszola/package": "2.0.0"
}const helloWorld = require("@deniszola/package");
helloWorld(); // Hello World from @deniszola/package!