
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
@heroku/applink
Advanced tools
Use the Node.js SDK for Heroku AppLink to develop Heroku AppLink managed apps that interact with Salesforce and Data Cloud orgs.
Node.js SDK for Heroku AppLink provides:
And much more!
For more information, see API docs.
Example use of the Node.js SDK for Heroku AppLink provided as part of the Heroku AppLink CLI Plugin's applink:project
template:
fastify.get('/accounts', async function (request, reply) {
const {event, context, logger} = request.sdk;
logger.info(`GET /accounts: ${JSON.stringify(event.data || {})}`);
const query = 'SELECT Id, Name FROM Account';
if (process.env.SALESFORCE_ORG_NAME) {
// If an org reference is set, query Accounts in that org
const orgName = process.env.SALESFORCE_ORG_NAME;
const applinkAddon = request.sdk.addons.applink;
logger.info(`Getting org '${orgName}' connection from Heroku Applink add-on...`);
const anotherOrg = await applinkAddon.getAuthorization(orgName);
logger.info(`Querying org '${orgName}' (${anotherOrg.id}) Accounts...`);
try {
const result = await anotherOrg.dataApi.query(query);
const accounts = result.records.map(rec => rec.fields);
logger.info(`For org '${orgName}' (${anotherOrg.id}), found ${accounts.length} Accounts`);
} catch (err) {
logger.error(err.message);
}
}
// Query invoking org's Accounts
const org = context.org;
logger.info(`Querying invoking org (${org.id}) Accounts...`);
const result = await org.dataApi.query(query);
const accounts = result.records.map(rec => rec.fields);
logger.info(`For invoking org (${org.id}), found the following Accounts: ${JSON.stringify(accounts || {})}`);
return accounts;
});
HEROKU_APPLINK_ADDON_NAME
- For development, configures the SDK to use a different addon name in place of "HEROKU_APPLINK". Used when fetching config vars.You will need java installed to run wiremock.
To test with coverage run yarn test:coverage
FAQs
Applink SDK for Heroku Apps.
We found that @heroku/applink demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 186 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
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.