package-fetch
v1.0.1
Published
Fetches every package you have.
Readme
install
npm i package-fetch
##Info returns you with all the node packages you have installed.
Usage
const { packages } = require('package-fetch')
setTimeout(() => { //It needs 20 ms to fetch all the packages.
console.log(packages)
}, 20);