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

bitsocket-connect

v1.4.0

Published

A plug and play Bitsocket connection.

Downloads

6

Readme

bitsocket-connect

A plug and play Bitsocket connection for Nodejs and browser.

Breaking changes

The latest version of bitsocket-connect no longer uses the callback method when crawling the event database. The api use to be crawlRecent(token, query, processFunction, callback, endPoint). Instead crawlRecent is an async function and so you can use .then() or async await.

Install

npm i --save bitsocket-connect

in the browser include the following script tag in your document header (crawlRecent not supported in the browser) :

<script type="text/javascript" src='https://x.bitfs.network/58e08db775da80c45f82ec4c28204aa228140c32c2d1aaa8b5911e5b8d57f9f5.out.0.3'></script>

Usage

bitsocket-connect includes 3 functions to interface with Bitsocket; connect, getLatest, and close. Use crawlRecent to crawl the last 24 hours of transactions.

connect(query, process, (optional) lastEventId, (optional) endPoint)

query: A TXO query used to filter new transactions.
process: A function that is called individually on each incoming transaction from Bitsocket and is passed the transaction as a parameter. Can be synchronous or async but if it is async be sure to return a promise that resolves when done processing the transaction to ensure all transactions are processed in the correct order.
lastEventId: Use the Last-Event-Id from close() to reopen a Bitsocket from where you left off.
endPoint: Bitsocket endpoint. defaults to TXO

example:

in node:
const bitsocket = require('bitsocket-connect');

node and browser:

const query = { "v": 3, "q": { "find": {} } };

bitsocket.connect(query, function(tx){
 console.log(tx)
 });

close()

Closes the Bitsocket and returns the Last-Event-Id in case you would like to reopen the socket or null if there is none.

async getLatest()

Gets the latest transaction matching your query that was received by the Bitcoin network before opening the Bitsocket. This can either be a confirmed or unconfirmed transaction.

example:
bitsocket.getLatest().then(latest=>console.log(latest));

crawlRecent(token, query, process, (optional) endPoint)

Crawls the last 24 hours of the Bitsocket event database. Uses the same api as run-bitbus

Have fun!