
Research
Node.js Fixes AsyncLocalStorage Crash Bug That Could Take Down Production Servers
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.
@shipengine/connect-runtime
Advanced tools
Install dependencies either at the repo root or in each package directory, eg /packages/connect-carrier-api
Install dependencies
yarn
Build from the package directory
yarn build
import { logger, NotImplementedError, start } from '@shipengine/connect-runtime';
import { OrderSourceApp, AuthenticationType, AcknowledgeOrdersRequest, AcknowledgeOrdersResponse, SalesOrdersExportRequest, SalesOrdersExportResponse, ShipmentNotificationRequest, ShipmentNotificationResponse } from '@shipengine/connect-order-source-api';
import { join } from 'path';
const SalesOrdersExport = (request: SalesOrdersExportRequest): Promise<SalesOrdersExportResponse> => {
logger.info('This is a useless log');
throw new NotImplementedError();
}
const ShipmentNotification = (request: ShipmentNotificationRequest): Promise<ShipmentNotificationResponse> => {
throw new NotImplementedError();
}
const AcknowledgeOrders = (request: AcknowledgeOrdersRequest): Promise<AcknowledgeOrdersResponse> => {
throw new NotImplementedError();
}
start(new OrderSourceApp({
SalesOrdersExport,
ShipmentNotification,
AcknowledgeOrders,
Metadata: {
Id: '3bdd999b-ecf5-4915-b505-c8e665ce1f56',
Name: 'Order Source API App',
AuthProcess: {
Identifier: {
AuthenticationType: AuthenticationType.Basic,
IsSandbox: false
}
},
OrderSources: [{
Id: '3440a3bf-cd22-494f-ad02-500b6cdcedb8',
Name: 'Order Source API App',
SendEmail: true,
ScoreFactorForAutoRefresh: 0.1,
CanRefresh: false,
CanConfigureTimeZone: false,
CanConfirmMultipleShipments: false,
CanConfirmShipments: false,
CanLeaveFeedback: true,
HasCustomMappings: false,
HasCustomStatuses: false,
HasInventoryLevels: true,
AccountConnection: {
Name: 'OrderSource API App Connection Form',
ConnectionFormSchema: {
JsonSchema: {
"type": "object",
"required": [
"username",
"password"
],
"properties": {
"username": {
"type": "string",
"title": "User Name:"
},
"password": {
"type": "string",
"title": "Password:"
}
}
},
UiSchema: {
"password": {
"ui:widget": "password",
"ui:help": "Hint: Make it strong!"
}
}
}
}
}]
},
Logo: join(__dirname, '../assets/logo.svg'),
Icon: join(__dirname, '../assets/icon.svg'),
}));
package.jsonnpm run-script buildnpm publishThis will publish the app to Nexus (our private repository)
FAQs
This is a generic runtime for all ShipEngine Connect apps.
The npm package @shipengine/connect-runtime receives a total of 1,251 weekly downloads. As such, @shipengine/connect-runtime popularity was classified as popular.
We found that @shipengine/connect-runtime demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 43 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.

Research
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.

Research
/Security News
A malicious Chrome extension steals newly created MEXC API keys, exfiltrates them to Telegram, and enables full account takeover with trading and withdrawal rights.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.