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

@cryptocadet/sdk

v1.2.1

Published

SDK for CryptoCadet altcoin payment processor API.

Downloads

11

Readme

Cadet SDK

The Cadet SDK is a simple and robust JavaScript/TypeScript library for interacting with the CryptoCadet API. This SDK enables developers to seamlessly integrate CryptoCadet's features into their applications.

Features

  • User Management: Create users, retrieve user details, and update information.
  • Product Management: Add, update, delete, and fetch product details.
  • Network Integration: Manage and query blockchain network details.
  • Subscription Management: Handle user subscriptions easily.

Installation

Install the SDK using npm or yarn:

npm install @cryptocadet/sdk

or

yarn add @cryptocadet/sdk

Usage

Initialization

Import and initialize the SDK with your API and Secret keys:

import CadetSDK from 'cryptocadet/sdk';

const sdk = new CadetSDK('your-public-api-key', 'your-secret-key');
await sdk.authenticate();

Methods

User Management

Create User
const response = await sdk.createUser('[email protected]');
console.log(response);
Get User
const user = await sdk.getUser();
console.log(user);

Product Management

Create Product
const product = { productId: 'prod123', price: 99.99 };
const response = await sdk.createProduct(product);
console.log(response);
Delete Product
const response = await sdk.deleteProduct('prod123');
console.log(response);
Get Product Price
const response = await sdk.getProductPrice('prod123');
console.log(response);

Network Management

Add Network
const response = await sdk.addNetwork('Ethereum');
console.log(response);
Get Network Details
const response = await sdk.getNetwork('Ethereum');
console.log(response);

Subscription Management

Cancel Subscription
const response = await sdk.cancelSubscription();
console.log(response);

Wallet Management

Update Wallet Address
const response = await sdk.updateWalletAddress('0x1234567890abcdef1234567890abcdef12345678');
console.log(response);

API Reference

For a detailed description of all available endpoints and parameters, refer to the CryptoCadet API Documentation.

Development

Build

To build the project:

npm run build

Run Tests

The SDK is tested using Jest. To run tests:

npm test

Linting

Ensure your code meets the project's style guidelines:

npm run lint

Contributing

We welcome contributions! Please fork the repository and submit a pull request.

License

This project is licensed under the MIT License. See the LICENSE file for details.

Support

If you encounter any issues, feel free to open an issue on GitHub or contact us at [email protected].


Happy Coding! 🎉