
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
The Scalingo.js library provides convenient access to the Scalingo API. A documentation is available online
Note: 0.5.0 has a few internal changes (dependencies bumps, switch to esbuild) that may result in breakages.
The package needs to be configured with your token which is available in your Scalingo dashboard.
const scalingo = require('scalingo')
scalingo.clientFromToken("tk-us-...").then(function(client) {
return client.Users.self()
}).then(function(user) {
console.log(user)
})
Or using ES modules, this looks more like:
import Scalingo from 'scalingo'
let client = await Scalingo.clientFromToken("tk-us-...")
let user = await client.Users.self()
console.log(user)
A bunch of examples are available in the examples folder to show how to use
scalingo.js library. In order to execute them, you need to define the
environment variable SCALINGO_TOKEN. The token can be created in Scalingo
dashboard. Then modify the example so that
the application name and the possible IDs match one of your application.
Eventually execute the example with:
export SCALINGO_TOKEN="tk-us-...."
node examples/Addons/add_addon.js
npm install
npm run test
Don't forget to update the CHANGELOG.md file.
# If it's a patch (see https://docs.npmjs.com/cli/version.html)
npm version patch
git push --tags
git push origin master
Then create a new release on the scalingo.js Github repository.
FAQs
Wrapper for the Scalingo API
The npm package scalingo receives a total of 653 weekly downloads. As such, scalingo popularity was classified as not popular.
We found that scalingo demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.