
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.
@ordercloud/seeding
Advanced tools
Download and upload serialized representations of full ordercloud marketplaces.
For node.js users, install with npm i @ordercloud/seeding -g and then run @ordercloud/seeding --help.
Alternatively, node.js users can run without install npx @ordercloud/seeding --help.
Download an executable. Run like seeding-win.exe --help.
| Operating System | Executable |
|---|---|
| Windows | seeding-win.exe |
| Mac | seeding-macos |
| Linux | seeding-linux |
Create a marketplace from a "SimpleB2C" template.
seed Simple-B2C -u={username} -p={password}
Create a marketplace based on a local file.
seed ./folder/seed-data.yml -u={username} -p={password}
Create a marketplace based on a public url.
seed https://raw.githubusercontent.com/ordercloud-api/ordercloud-seed/main/seeds/Simple-B2C.yml -u={username} -p={password}
Download the data from an existing marketplace to a seed file.
download ./folder/new-file-to-create.yml -i={existing-marketplace-id} -u={username} -p={password}
Validate that a local file would seed successfully.
validate ./folder/my-file.yml
import { download, seed, validate } from "@ordercloud/seeding";
await seed({
portalJWT: "xxxxxx",
filePath: "./folder/ordercloud-data.yml",
logger: (message:string, type: MessageType) => {
console.log(message)
}
});
var myData: SerializedMarketplace = { ... };
await seed({
portalJWT: "xxxxxx",
rawData: myData,
logger: (message:string, type: MessageType) => {
console.log(message)
}
});
These are seeding files maintained as part of this repo that represent templates for common ordercloud use cases.
| Command Alias | Raw URL |
|---|---|
seed Simple-B2C | https://raw.githubusercontent.com/ordercloud-api/ordercloud-seed/main/seeds/Simple-B2C.yml |
npm installnpm build everytime you change source files.node ./dist/cli.js [command] to debug a command.npm run test to run unit tests.FAQs
Download and upload seeding files from the OrderCloud platform.
The npm package @ordercloud/seeding receives a total of 46 weekly downloads. As such, @ordercloud/seeding popularity was classified as not popular.
We found that @ordercloud/seeding demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 10 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.