Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
This module provides a simple Promise-based API for retrieving and parsing DBLSQD Feeds.
This module is useful for adding update notifications and/or auto-updates to any Node.js application.
If you are using Electron, you can also use the drop-in auto-update UI built on top of this module, dblsqd-electron.
If you need access to the full API of DBLSQD (e. g. for integrating DBLSQD into deployment tools), check out the dblsqd-api module.
You can install dblsqd-sdk via npm. Add dblsqd-sdk to your package.json
or
install it via the command-line: npm i --save dblsqd-sdk
Use dblsqd-sdk in your application like this:
const {Feed} = require("dblsqd-sdk")
let feed = new Feed("https://feeds.dblsqd.com/:app_token", ":channel", ":os", ":arch")
feed.load().then(() => {
//Get all available releases
const releases = feed.getReleases()
//Only get updates to the current version
const {version} = require("./package.json")
const updates = feed.getUpdates(version)
//Download an update
if (updates.length > 0) {
feed.downloadRelease(updates[0].version).then(file => {
console.log(`The update was successfully downloaded to ${file}`)
})
}
})
FAQs
Client module for DBLSQD.
We found that dblsqd-sdk 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.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.