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

@tourist-esim/touristesim-nodejs-sdk

v1.0.4

Published

Official Node.js SDK for Tourist eSIM Partner API - Easy integration for resellers and partners

Readme

Tourist eSIM Node.js SDK

Official Node.js SDK for Tourist eSIM Partner API. Enable easy integration for resellers and partners to manage eSIM plans, orders, and customer data.

Features

  • 🔐 OAuth 2.0 Authentication - Secure Client Credentials flow with automatic token refresh
  • 🚀 Auto-Retry Logic - Exponential backoff with 3 retry attempts on connection failures
  • 📦 Type-Safe - Full TypeScript support with complete type definitions
  • 💾 Token Caching - In-memory token cache to reduce OAuth requests
  • Async/Await - Modern async/await support throughout the SDK
  • 🔄 Pagination Support - Built-in pagination for catalog queries
  • 🎯 Exception Hierarchy - Specific exceptions for different error scenarios

Requirements

  • Node.js 20 LTS or higher
  • npm or yarn

Installation

npm install @tourist-esim/touristesim-nodejs-sdk

or

yarn add @tourist-esim/touristesim-nodejs-sdk

Quick Start

import { TouristEsim } from '@tourist-esim/touristesim-nodejs-sdk';

const sdk = new TouristEsim(
  'your-client-id',
  'your-client-secret'
);

// Fetch all plans
const plans = await sdk.plans().get();
for (const plan of plans) {
  console.log(`${plan.get('name')} - ${plan.get('price')} ${plan.get('currency')}`);
}

API Usage

Plans

// Get all plans with filters
const plans = await sdk.plans().get({
  country: 'US',
  type: 'global',
  per_page: 50,
  sort_by: 'price'
});

// Get single plan
const plan = await sdk.plans().find(123);

// Get plans by country
const usPlans = await sdk.plans().byCountry('US');

// Get global plans
const globalPlans = await sdk.plans().global();

// Validate plan
const validation = await sdk.plans().validate(123, 5);

Countries

// Get all countries
const countries = await sdk.countries().all();

// Find by code
const usa = await sdk.countries().find('US');

// Search countries
const asian = await sdk.countries().search('china');

// Featured countries
const featured = await sdk.countries().featured();

Orders

// Create order
const order = await sdk.orders().create({
  plan_id: 123,
  quantity: 2,
  customer_email: '[email protected]'
});

// Get orders
const orders = await sdk.orders().all();

// Get single order
const order = await sdk.orders().find(456);

// Cancel order
await sdk.orders().cancel(456);

eSIMs

// Get eSIMs
const esims = await sdk.esims().all();

// Find eSIM
const esim = await sdk.esims().find('8955001000000000000');

// Check usage
const usage = await sdk.esims().usage('8955001000000000000');

// Get topup packages
const packages = await sdk.esims().topupPackages('8955001000000000000');

// Purchase topup
await sdk.esims().topup('8955001000000000000', 789);

// Send setup email
await sdk.esims().sendEmail('8955001000000000000', '[email protected]');

Error Handling

import {
  AuthenticationException,
  ValidationException,
  RateLimitException,
  ResourceNotFoundException
} from '@tourist-esim/touristesim-nodejs-sdk';

try {
  const plan = await sdk.plans().find(999);
} catch (error) {
  if (error instanceof AuthenticationException) {
    console.error('Auth failed:', error.message);
  } else if (error instanceof ValidationException) {
    console.error('Validation errors:', error.getErrors());
  } else if (error instanceof RateLimitException) {
    console.error('Rate limited. Retry after:', error.getRetryAfter(), 'seconds');
  } else if (error instanceof ResourceNotFoundException) {
    console.error('Not found:', error.message);
  } else {
    console.error('Error:', error);
  }
}

API Documentation

For complete API documentation, visit:

  • API Docs: https://docs.touristesim.net/
  • SDK Guides: https://docs.touristesim.net/sdks/guides
  • Partner Dashboard: https://partners.touristesim.net

Support

For issues or questions:

  • Technical Support: [email protected]
  • GitHub Issues: https://github.com/touristesim/touristesim-nodejs-sdk/issues
  • Dashboard: https://partners.touristesim.net

License

MIT - see LICENSE file