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

yandex-delivery-sdk

v0.1.3

Published

TypeScript SDK for Yandex Delivery Express and Russia delivery APIs.

Readme

yandex-delivery-sdk

TypeScript SDK for Yandex Delivery APIs:

  • Express delivery / same-day delivery
  • Delivery across Russia, also called other-day delivery in the API docs

The SDK is a typed wrapper over fetch for Node.js 18+. It validates request inputs with Zod and leaves responses as TypeScript-typed JSON.

Install

npm install yandex-delivery-sdk

Express delivery

import { YandexDeliveryClient } from "yandex-delivery-sdk";

const client = new YandexDeliveryClient({
  token: process.env.YANDEX_DELIVERY_TOKEN!,
});

const claim = await client.express.claims.create({
  request_id: "order-1001",
  route_points: [
    {
      type: "source",
      address: "Москва, Ленинградский проспект 27",
      contact: { name: "Store", phone: "+79990000000" },
    },
    {
      type: "destination",
      address: "Москва, Ленинградский проспект 37 к9",
      contact: { name: "Customer", phone: "+79990000001" },
    },
  ],
  items: [{ title: "Order", weight: 1, quantity: 1 }],
});

const info = await client.express.claims.info({ claim_id: String(claim.id ?? claim.claim_id) });

Delivery Across Russia

import { YandexDeliveryClient } from "yandex-delivery-sdk";

const client = new YandexDeliveryClient({
  token: process.env.YANDEX_DELIVERY_TOKEN!,
  environment: "production",
});

const offers = await client.otherDay.offers.create({
  info: { operator_request_id: "order-1002" },
  source: {
    platform_station: { platform_id: "your-platform-station-id" },
  },
  destination: {
    location: { address: "Москва, Ленинградский проспект 37 к9" },
    contact: { first_name: "Ivan", phone: "+79990000001" },
  },
  places: [
    {
      physical_dims: { weight_gross: 1000, dx: 10, dy: 10, dz: 10 },
    },
  ],
});

if (offers.offers?.[0]) {
  await client.otherDay.offers.confirm({ offer_id: offers.offers[0].offer_id });
}

Environments

new YandexDeliveryClient({
  token: "...",
  environment: "testing",
});

Default hosts:

  • Express production: https://b2b.taxi.yandex.net
  • Other-day production: https://b2b-authproxy.taxi.yandex.net
  • Other-day testing: https://b2b.taxi.tst.yandex.net

Express testing host can be passed explicitly:

new YandexDeliveryClient({
  token: "...",
  environment: "testing",
  baseUrls: {
    express: "https://your-express-test-host.example",
  },
});

Errors

import { YandexDeliveryError } from "yandex-delivery-sdk";

try {
  await client.express.claims.info({ claim_id: "missing" });
} catch (error) {
  if (error instanceof YandexDeliveryError) {
    console.error(error.status, error.code, error.details, error.requestId);
  }
}

Security

Do not use the SDK from browser code. Yandex Delivery API tokens must stay on a trusted backend.

Development

Use Git Bash for project commands:

pnpm install
pnpm typecheck
pnpm test
pnpm build