stefannpm
v2.5.0
Published
StefanNPM is my first published NPM package.
Downloads
13
Maintainers
Readme
StefanNPM Readme
My first published NPM package.
Includes simple console logs and two functions squareIt
and cubeIt
for testing.
npm i stefannpm --save
Create a
test.js
filePaste the following:
const stefanNPM = require("stefannpm"); console.log(stefanNPM.squareIt(3)); console.log(stefanNPM.cubeIt(3));
node test