
Product
Introducing Socket Scanning for OpenVSX Extensions
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.
check-for-update
Advanced tools
Check for update manually or at configured interval with minimum configuration
Heads up! This works only with Github repositories that follows semver.
Check for update manually or at configured interval with minimum configuration.
npm install check-for-update
Create CheckForUpdate instance with provided configuration.
{
packageJSON: Object, // package.json object (optional when repositoryURL and currentVersion is given)
repositoryURL: String, // Github repository URL (optional when packageJSON is given)
currentVersion: String, // Current version of software (optional when packageJSON is given)
checkOnLaunch: Boolean, // Check for update when object is initiated
intervalHrs: Number // Interval to check for update in hours
}
Manually check for update.
Start checking for update manually (or when checkOnLaunch is false).
Stop update checker.
Emitted when a new version/update is available.
Emitted when client encounters an error.
const CheckForUpdate = require('check-for-update')
const cfu = new CheckForUpdate({
packageJSON: require('./package.json'),
checkOnLaunch: true,
intervalHrs: 12
})
// or
const cfu = new CheckForUpdate({
repositoryURL: 'harshjv/donut',
currentVersion: '1.2.3',
checkOnLaunch: true,
intervalHrs: 12
})
cfu.on('error', (data) => console.error(data))
cfu.on('update_available', (data) => {
const { currentVersion, newVersion, repoURL, updateURL } = data
// ...
})
MIT
FAQs
Check for update manually or at configured interval with minimum configuration
We found that check-for-update demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.

Product
Bringing supply chain security to the next generation of JavaScript package managers

Product
A safer, faster way to eliminate vulnerabilities without updating dependencies