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 🙏

© 2024 – Pkg Stats / Ryan Hefner

cubid-sdk

v1.0.2

Published

Cubid SDK

Downloads

170

Readme

Here's a sample README.md for your file:


Cubid SDK

Cubid SDK provides a simple interface for interacting with the Cubid API to manage identity, location, and score data for users, and to securely store secrets. The SDK is designed for easy integration into dApps or web applications that require identity management using the Cubid Protocol.

Features

  • User Identity Management: Fetch and manage user identity data.
  • Location Data: Retrieve approximate, rough, or exact location data for a user.
  • User Score: Fetch the trust score of a user.
  • User Creation: Create new users with email and phone number.
  • Secret Storage: Save and manage secrets for users.

Installation

You can install the SDK via npm:

npm install cubid-sdk

For more information, visit the npm package page.

Usage

Here's an example of how to use the Cubid SDK:

Initialization

const CubidSDK = require('cubid-sdk');

// Initialize with your dapp_id and api_key
const cubid = new CubidSDK('your_dapp_id', 'your_api_key');

API Methods

1. Create a New User

cubid.createUser({ email: '[email protected]', phone: '1234567890' })
  .then(response => console.log('New user created:', response))
  .catch(error => console.error('Error creating user:', error));

2. Fetch Identity Data

cubid.fetchIdentity({ user_id: 'user123' })
  .then(response => console.log('Identity data:', response))
  .catch(error => console.error('Error fetching identity:', error));

3. Fetch User Location (Exact)

cubid.fetchExactLocation({ user_id: 'user123' })
  .then(response => console.log('Exact location data:', response))
  .catch(error => console.error('Error fetching location:', error));

4. Save Secret for a User

cubid.saveSecret({ user_id: 'user123', secret: 'mySuperSecretKey' })
  .then(response => console.log('Secret saved:', response))
  .catch(error => console.error('Error saving secret:', error));

API Reference

For more detailed information about the API endpoints and parameters, check the Cubid API Documentation.

Full Source Code

You can view the full source code for this SDK here.

License

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


This README provides a clear overview of the SDK, installation instructions, usage examples, and links to relevant documentation, making it easy for developers to integrate and use the SDK.