1.0.4 • Published 6 years ago

latest-stalker v1.0.4

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

Latest Stalker (Module)

Check which dependencies in your package are using the latest version.

Checkokut the demo and the api.

Usage

npm install latest-stalker

Async/Await

import stalker from 'latest-stalker'

(async() => {
  try {
    console.log(await stalker('./package.json'))
  } catch (er) { console.log(er.stack) }
})()

Promise

const stalker = require('latest-stalker')

stalker('./package.json').then(json =>
  console.log(json)
).catch(er =>
  console.log(er.stack)
)

Contribute

To contribute fork this project, make your changes, and submit a pull request.

Development

git clone https://github.com/thenengah/latest-stalker-module.git
cd latest-stalker-module
npm intall
npm run build
npm test