
Security News
Node.js Drops Bug Bounty Rewards After Funding Dries Up
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.
node-scalingo
Advanced tools
This library is an out-of-the-box HTTP client for the Scalingo API in Node.js.
You can find the detailed Scalingo API specifications on the official API documentation website.
1/ Get the following information from Scalingo:
2/ Install the dependency
npm install node-scalingo --save
3/ In your code, define a new ScalingoApi object. Then use the services you need.
const { ScalingoApi } = require('node-scalingo');
const API_TOKEN = '<your_api_token>'; // Enter your own API token
const API_ENDPOINT = 'https://api.osc-fr1.scalingo.com/v1'; // ex: for Outscale region
const scalingoApi = new ScalingoApi(API_TOKEN, API_ENDPOINT);
scalingoApi.apps.listApplications().then(console.log);
It is recommended to consume services through ScalingoApi.
If you miss a service - this library is still in construction (feb. 2020) -, you can still use ScalingoClient and the query() method, according to the Scalingo developers documentation.
The following example do the same as previously, but with ScalingoClient instead of ScalingoApi.
const { ScalingoClient } = require('node-scalingo');
const API_TOKEN = '<your_api_token>'; // Enter your own API token
const API_ENDPOINT = 'https://api.osc-fr1.scalingo.com/v1'; // ex: for Outscale region
const scalingoClient = new ScalingoClient(API_TOKEN, API_ENDPOINT);
scalingoClient.query('apps', 'get').then((response) => console.log(response.data));
Please refer to the Scalingo API guides for help using node-scalingo.
git clone git@github.com:jbuget/node-scalingo.git
cd node-scalingo
npm install
npm run build
npm test
npm run release
This project is licensed under the AGPL-3.0 License.
FAQs
Node client for Scalingo API
We found that node-scalingo 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
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.