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

@satea/vpn-info-monitor-utils

v0.0.6

Published

satea vpn info monitor utils

Downloads

19

Readme

Sandbags Utils

npm version license Types

This project is a collection of common functions/features used in developing applications and tools for Sandbags Protocol.

Warning
This is to remind you that Sandbags Protocol is a very early project, we are committed to blockchain security and pay close attention to user experience. This repo will change frequently, please do not use this project in production environment until version reaches 1.0.0.

Usage

Use NPM / Yarn in node.js:

# NPM
npm i @sandbags-protocol/sandbags-utils

# Yarn
yarn add @sandbags-protocol/sandbags-utils

Cryptography

import {
  ecdsaRecover,
  ecdsaSign,
  randomBytes,
  genPrivateKey,
  privateKey2publicKey,
  publicKey2id,
  randomId,
  publicKey2address,
  hexString2buffer,
  buffer2HexString,
  keccak256,
  sign,
  recover,
  encrypt,
  decrypt,
} from '@sandbags-protocol/sandbags-utils/lib/cryptography'

ecdsaRecover, ecdsaSign

Imported from ethereum-cryptography/secp256k1-compat, see API of secp256k1-node.

randomBytes

Imported from crypto, see nodejs document.

genPrivateKey

function genPrivateKey(): Buffer

Generate an ethereum private key.

privateKey2publicKey

function privateKey2publicKey(privateKey: Buffer): Buffer

Convert a private key to public key.

publicKey2address

function publicKey2address(publicKey: Buffer): Buffer

Convert a public key to wallet address.

publicKey2id

function publicKey2id(publicKey: Buffer): Buffer

Convert a public key to sandbags node id.

randomId

function randomId(): Buffer

Generate an random sandbags node id.

hexString2buffer, buffer2HexString

function hexString2buffer(hex: string): Buffer
function buffer2HexString(buf: Buffer, sign?: boolean): string

Convert hex string to buffer, ether it starts with 0x or not.

Convert buffer to hex string, if sign passed as true, return hex string with 0x prefix.

keccak256

function keccak256(...buffers: Buffer[]): Buffer

Concat all input buffers and do keccak256 hash.

sign, recover

interface Signature {
  signature: Uint8Array;
  recid: number;
}
function sign(msgHash: Buffer, privateKey: Buffer): Signature
function recover(signature: Buffer, recoverId: number, msgHash: Buffer): Buffer

Sign and recover a buffer message.

encrypt, decrypt

function encrypt(message: Buffer, encryptPublicKey: Buffer, signPrivateKey: Buffer): Promise<Buffer>
function decrypt(data: Buffer, decryptPrivateKey: Buffer, signPublicKey: Buffer): Promise<Buffer>

Encrypt and decrypt message between 2 public/private key pairs.

Logger

import {
  SandbagsLogLevel,
  setOutputLevel,
  setOutputHandler,
} from '@sandbags-protocol/sandbags-utils/lib/logger'
import sandbagsLogger from '@sandbags-protocol/sandbags-utils/lib/logger'

const logger = sandbagsLogger('topic')
logger.trace('trace message')
// {"level":"TRACE","topic":"topic","message":"trace message"}
logger.debug('debug message')
// {"level":"DEBUG","topic":"topic","message":"debug message"}
logger.info('info message')
// {"level":"INFO","topic":"topic","message":"info message"}
logger.warn('warn message')
// {"level":"WARN","topic":"topic","message":"warn message"}
logger.error('error message')
// {"level":"ERROR","topic":"topic","message":"error message"}
logger.fatal('fatal message')
// {"level":"FATAL","topic":"topic","message":"fatal message"}

setOutputLevel(SandbagsLogLevel.WARN)
// will only log WARN, ERROR and FATAL event.

setOutputHandler((eventString: string): void => {
  const event = JSON.parse(eventString)
  console.log(`[${event.topic}][${event.level}] ${event.message}`)
})

logger.fatal('fatal message')
// [topic][FATAL] fatal message

// stream usage
someOtherLogReporter.outputStream = logger.stream.copy()
someOtherLogReporter.outputStream.level = SandbagsLogLevel.INFO

Version

import SandbagsVersion from '@sandbags-protocol/sandbags-utils/lib/version'

const version0 = new SandbagsVersion('x.x.x')
const version1 = new SandbagsVersion('0.1.0')
const version2 = new SandbagsVersion('0.2.0')

version0.toString()
// 'x.x.x'
version0.isValid
// false
version1.isValid
// true
version1.gt(version2)
// false
version1.gte(version2)
// false
version1.lt(version2)
// true
version1.lte(version2)
// true
version1.eq(version2)
// false
version1.satisfies('0.0.1 - 0.3.0')
// true

License

@sandbags-protocol/sandbags-utils is released under The GNU GENERAL PUBLIC LICENSE version 3 (GPL-3.0)

See LICENSE file.