
Product
Introducing Supply Chain Attack Campaigns Tracking in the Socket Dashboard
Campaign-level threat intelligence in Socket now shows when active supply chain attacks affect your repositories and packages.
@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 48 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.

Product
Campaign-level threat intelligence in Socket now shows when active supply chain attacks affect your repositories and packages.

Research
Malicious PyPI package sympy-dev targets SymPy users, a Python symbolic math library with 85 million monthly downloads.

Security News
Node.js 25.4.0 makes require(esm) stable, formalizing CommonJS and ESM compatibility across supported Node versions.