This is both an npm package and a web service for getting the latest Primer release data from both npm and GitHub.
To use it in Node, install it with:
npm install --save @primer/releases
The main module export is an async function that returns an object:
const getReleases = require('@primer/releases')
const {releases, packages} = await getReleases()
console.log('latest release:', releases[0])
console.log('primer packages:', packages)
The JSON API is available at:
Query string parameters and request body are ignored, and there is no caching.