rayyan-package
v1.0.3
Published
run npm install rayyan-package.
Readme
run npm install rayyan-package.
In your main file,
const {helloNpm} = require('rayyan-package);
const result = helloNpm();
console.log(result);
you should see "hello NPM".
const {generateString} = require('rayyan-package);
const randomStringOfLength_7 = generateString(7);
console.log(randomStringOfLength_7);