
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
@heroku/salesforce-sdk
Advanced tools
import * as sdk from 'salesforce-sdk';
export default class HelloFunction {
private readonly logger: sdk.Logger;
constructor(private readonly event: any,
private readonly context: sdk.Context) {
this.logger = context.logger;
this.logger.shout(`${this.getName()}.init()`);
}
public getName(): string {
return this.constructor.name;
}
public async invoke(): Promise<any> {
this.logger.shout(`${this.getName()}.invoke()`);
const results = await this.context.forceApi.query('SELECT Name FROM Account');
this.logger.info(JSON.stringify(query));
return results;
}
}
salesforce-sdk is published to https://www.npmjs.com/package/@heroku/salesforce-sdk.
Note: Requires access to @heroku/salesforce-sdk.
To publish to @heroku/salesforce-sdk:
git pull
...
npm run build
...
npm run test
...
Ensure that code coverage meets standards.
package.json.If applicable, can use npm version.
TODO: Decide when to git-tag version.
npmjs.com.npm publish
...
May use np, eg:
np 0.0.18-develop.1 --no-release-draft --tag=develop.1 --any-branch
npm install
...
git commit -a -m "<updated-version>"
...
git push
...
TODO: Decide when to git-tag version.
FAQs
Salesforce Function SDK for Node.js
The npm package @heroku/salesforce-sdk receives a total of 2 weekly downloads. As such, @heroku/salesforce-sdk popularity was classified as not popular.
We found that @heroku/salesforce-sdk demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 261 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
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.