
Security News
Meet Socket at Black Hat Europe and BSides London 2025
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.
experiment-catalog-ingestor
Advanced tools
Package to help ingesting catalog data into Constructor.io ☕️
A Node.js library for easily ingesting product catalogs into Constructor.io, using a strict type system.
This client is intended for use in server side integrations. If you want a JavaScript client for client side (i.e. front end) integrations please use @constructor-io/constructorio-client-javascript
This package is meant to help in the process of ingesting your catalog data into Constructor.io. Internally, it relies on our public API.
First, install the package:
npm i @constructor/ingestor
To ingest data, you simply need to call the ingest method:
import { CatalogIngestionPayload, CatalogIngestor } from "@constructor-io/ingestor";
async function fetchData(): Promise<ExternalData> {
// TODO: Implement your logic to fetch data here.
return {};
}
function transformData(data: ExternalData): CatalogIngestionPayload {
// TODO: Implement your logic to transform data here.
// Here, we're just using an example dataset.
return {
groups: [
{
parent_id: null,
name: "Shoes",
id: "shoes",
},
],
items: [
{
id: "nike-shoes-brown",
item_name: "Nike Shoes Brown",
image_url: "https://images.nike.com/shoes-brown.jpg",
url: "https://www.nike.com/shoes-brown",
description: "Best shoes",
group_ids: ["shoes"],
active: "TRUE",
metadata: [],
keywords: [],
facets: [
{
key: "Color",
value: "Brown",
},
{
key: "Size",
value: ["M", "L", "XL"],
},
],
},
],
variations: [],
};
}
const catalogIngestor = new CatalogIngestor({
constructorApiToken: "my-constructor-api-token",
});
await catalogIngestor.ingest(async () => {
const data = await fetchData();
return transformData(data);
});
FAQs
Package to help ingesting catalog data into Constructor.io ☕️
The npm package experiment-catalog-ingestor receives a total of 0 weekly downloads. As such, experiment-catalog-ingestor popularity was classified as not popular.
We found that experiment-catalog-ingestor demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.