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

@withton/bridge

v0.0.8-rc

Published

is a powerful and flexible library designed to facilitate secure communication and data exchange between different components or services within your application. It leverages cryptographic techniques to ensure the integrity and confidentiality of the dat

Downloads

540

Readme

Here's a template for a README document that you can use to describe your @withton/bridge package. This template includes sections that are commonly found in documentation for npm packages:


@withton/bridge

@withton/bridge is a powerful and flexible library designed to facilitate secure communication and data exchange between different components or services within your application. It leverages cryptographic techniques to ensure the integrity and confidentiality of the data being transmitted.

Table of Contents

Installation

To install the @withton/bridge package, you can use npm or yarn:

Using npm:

npm install @withton/bridge --save

Using yarn:

yarn add @withton/bridge

Usage

Here's a basic example of how to use the @withton/bridge package:

import { SessionCrypto } from '@withton/bridge';

// Initialize the bridge with a generated key pair or an existing one
const crypto = new SessionCrypto();
await crypto.initialize(); // if async initialization is required

// Encrypt a message to send securely
const receiverPublicKey = 'receiver-public-key-in-hex';
const encryptedMessage = await crypto.encrypt('Hello, World!', receiverPublicKey);

// Decrypt a received message
const senderPublicKey = 'sender-public-key-in-hex';
const decryptedMessage = await crypto.decrypt(encryptedMessage, senderPublicKey);

console.log('Decrypted Message:', decryptedMessage);

API Reference

SessionCrypto Class

constructor(keyGen?: KeyGen)

  • Parameters:
    • keyGen (optional): An object containing a publicKey and secretKey. If not provided, a new key pair will be generated.

initialize(keyGen?: KeyGen): Promise<void>

  • Description: Initializes the SessionCrypto instance. Must be called if async operations are used to generate keys.

encrypt(message: string, receiverPublicKey: string): Promise<Uint8Array>

  • Parameters:

    • message: The plaintext message to encrypt.
    • receiverPublicKey: The public key of the message recipient.
  • Returns: A Promise that resolves to an Uint8Array containing the encrypted message.

decrypt(message: Uint8Array, senderPublicKey: string): Promise<string>

  • Parameters:

    • message: The encrypted message as a Uint8Array.
    • senderPublicKey: The public key of the sender.
  • Returns: A Promise that resolves to the decrypted message as a string.

stringifyKeyGen(): KeyGen

  • Returns: An object containing the publicKey and secretKey in hex format.

Configuration

You can configure @withton/bridge to suit your needs by modifying the properties and methods within the SessionCrypto class. The library is designed to be flexible and can integrate with various cryptographic schemes depending on your security requirements.

Examples

Example 1: Basic Usage

import { SessionCrypto } from '@withton/bridge';

(async () => {
    const crypto = new SessionCrypto();
    await crypto.initialize();

    const receiverPublicKey = 'receiver-public-key-in-hex';
    const encryptedMessage = await crypto.encrypt('Secure Message', receiverPublicKey);

    const decryptedMessage = await crypto.decrypt(encryptedMessage, 'sender-public-key-in-hex');
    console.log('Decrypted:', decryptedMessage);
})();

Example 2: Using an Existing Key Pair

import { SessionCrypto } from '@withton/bridge';

const existingKeyPair = {
  publicKey: 'your-public-key',
  secretKey: 'your-secret-key'
};

const crypto = new SessionCrypto(existingKeyPair);
// No need to initialize, since we're using an existing key pair

Security

@withton/bridge uses modern cryptographic practices to ensure data integrity and confidentiality. It is recommended to use strong, random keys and securely manage them. Always keep your secret keys private and never expose them in your code or logs.

Contributing

Contributions are welcome! Please feel free to submit a pull request or open an issue to improve the package or its documentation.

How to Contribute

  1. Fork the repository
  2. Create a new branch (git checkout -b feature-branch)
  3. Make your changes
  4. Commit your changes (git commit -m 'Add new feature')
  5. Push to the branch (git push origin feature-branch)
  6. Open a Pull Request

License

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


Additional Notes:

  • Replace the placeholder values like receiver-public-key-in-hex and sender-public-key-in-hex with actual values as per your usage.
  • If you have more complex configurations or usage examples, you can add them to the appropriate sections.
  • Ensure that all security practices are clearly mentioned, especially when dealing with cryptographic functions.

This README template should give users a clear understanding of how to use your package and provide them with the necessary information to get started quickly.