This is just to deploy a toy-package and understand the process.
npm init
- write code, add
index.js
with proper export npm login
npm publish
npm init
a separate project (e.g. primo-pacco-test
) and load the package.
# index.js
const PrimoPacco = require("primo-pacco");
const msg = "se mia nonna avesse avuto le ruote sarebbe stata una biciclettae";
const primo = new PrimoPacco(msg);
primo.dire();
In order to publish subsequent changes, need to augment verison in package.json
.