2.5.0 • Published 6 years ago
stefannpm v2.5.0
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.jsfile Paste the following:
const stefanNPM = require("stefannpm"); console.log(stefanNPM.squareIt(3)); console.log(stefanNPM.cubeIt(3));node test