Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@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
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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.