Check which dependencies in your package are using the latest version.
Checkout the demo and the api.
npm install latest-stalker
import stalker from 'latest-stalker'
(async() => {
try {
console.log(await stalker('./package.json'))
} catch (er) { console.log(er.stack) }
})()
const stalker = require('latest-stalker')
stalker('./package.json').then(json =>
console.log(json)
).catch(er =>
console.log(er.stack)
)
To contribute fork this project, make your changes, and submit a pull request.
git clone https://github.com/thenengah/latest-stalker-module.git
cd latest-stalker-module
npm intall
npm run build
npm test