npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

epages-rest-node

v1.1.0

Published

TypeScript/Node.js SDK (ESM) for the ePages Now REST API

Readme

ePages REST SDK (Node.js)

TypeScript/Node.js SDK (ESM) for the ePages Now REST API. Supports products, orders, and customers. Requires Node.js 22+.

This project is not affiliated with, endorsed by, or connected to ePages GmbH.

Installation

npm install epages-rest-node

Configuration

import { EpagesClient } from "epages-rest-node";

const client = new EpagesClient({
  host: "www.meinshop.de",
  shop: "DemoShop",
  token: "your-bearer-token",
  // Optional: default locale and currency for products and orders (per-call params override these)
  locale: "de_DE",
  currency: "EUR",
});

Running the examples

From the repo root after npm install and npm run build:

EPAGES_HOST=www.yourshop.de EPAGES_SHOP=YourShop EPAGES_TOKEN=your-token node examples/usage.mjs

See examples/usage.mjs for a full runnable script (products list/get, orders list, customers list, and low-level request("GET", "locales")).

Usage

Products

// List products (with optional locale, currency, pagination, sort, filters)
const list = await client.products.list({
  locale: "de_DE",
  currency: "EUR",
  page: 1,
  resultsPerPage: 10,
  sort: "name",
  direction: "asc",
});

// Get single product
const product = await client.products.get("52F221E0-36F6-DC4E-384A-AC1504050C04", {
  locale: "de_DE",
  currency: "EUR",
});

// Create product
const created = await client.products.create(
  { productNumber: "SKU-001", name: "My Product", price: 9.99 },
  { locale: "de_DE", currency: "EUR" }
);

// Update product (JSON Patch)
await client.products.patch(
  productId,
  [{ op: "replace", path: "/name", value: "New Name" }],
  { locale: "de_DE", currency: "EUR" }
);

// Delete product
await client.products.delete(productId);

Orders

// List orders
const orders = await client.orders.list({
  locale: "de_DE",
  page: 1,
  resultsPerPage: 20,
  paidOn: true,
});

// Get single order
const order = await client.orders.get(orderId, { locale: "de_DE" });

Customers

// List customers
const customers = await client.customers.list({ page: 1, resultsPerPage: 20 });

// Get single customer
const customer = await client.customers.get(customerId);

// Create customer
const created = await client.customers.create({ email: "[email protected]", ... });

// Update customer (JSON Patch)
await client.customers.patch(customerId, [
  { op: "replace", path: "/billingAddress", value: { ... } },
]);

Low-level request (unimplemented endpoints)

For endpoints not covered by the method-based API (e.g. carts, categories, locales):

const data = await client.request("GET", "locales");
const shop = await client.request("GET", "");

Errors

  • ConfigurationError — missing or invalid host, shop, or token.
  • TooManyRequestsError — API returned 429 (rate limit exceeded).
  • ApiError — other non-2xx response; has status and body.

Attribution

This SDK was developed using the ePages developer documentation (source: epages-docs). A subset of the API reference (REST only, trimmed for SDK use) is included in this repo under docs/:

  • REST API docs (docs/rest/) — editorial content under CC BY 4.0.
  • RAML API definitions and schemas (docs/raml/) — under MIT (per epages-docs: “all other content”).

This project is not affiliated with ePages GmbH.

License

MIT