Static nodevu data. Automatically updated on some kind of schedule.
const { default, releases, security, support } = require('@nodevu/static')
// each of these is a giant JSON blob. default is most giant, followed by releases. Security and support are relatively small.
console.log(default)
console.log(releases)
console.log(security)
console.log(support)
This module has four exports:
default
(Object) - the default, full set of data returned by@nodevu/core
).releases
(Object) - only thereleases
properties from the default set of data returned by@nodevu/core
), following the same heirarchy.security
- only thesecurity
properties from the default set of data returned by@nodevu/core
), following the same heirarchy.support
- only thesupport
properties from the default set of data returned by@nodevu/core
), following the same heirarchy.