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

idac-testnet

v0.2.0

Published

A utility that lets developers try out the new suite of IDAC tools from DIGITAS!

Readme

IDAC Testnet Quickstart

Table of Contents

  1. Prerequisites
  2. Usage
  3. Troubleshooting
  4. License

Prerequisites

To run this quickstart, ensure the following dependencies are installed:

⚠️ Note: On macOS or Windows, allocate at least 4 GB of RAM to Docker (or 6 GB if running privacy examples).
See Docker for Mac or Docker Desktop under the “Resources” section.

⚠️ Note: Tested on Windows 10 Build 19045, WSL2, and Docker Desktop.
On Windows, use WSL2 kernels ≥ 5.15x. You may use either Docker Desktop or docker-engine with the compose plugin inside WSL2.


Usage

Generate the Docker Compose files and network configuration using:

npx idac-testnet

This launches the interactive setup utility:

              ___
 █████ ██████████     █████████     █████████      █████████  ██████████ ███████████ █████  █████ ███████████ 
▒▒███ ▒▒███▒▒▒▒███   ███▒▒▒▒▒███   ███▒▒▒▒▒███    ███▒▒▒▒▒███▒▒███▒▒▒▒▒█▒█▒▒▒███▒▒▒█▒▒███  ▒▒███ ▒▒███▒▒▒▒▒███
 ▒███  ▒███   ▒▒███ ▒███    ▒███  ███     ▒▒▒    ▒███    ▒▒▒  ▒███  █ ▒ ▒   ▒███  ▒  ▒███   ▒███  ▒███    ▒███
 ▒███  ▒███    ▒███ ▒███████████ ▒███            ▒▒█████████  ▒██████       ▒███     ▒███   ▒███  ▒██████████ 
 ▒███  ▒███    ▒███ ▒███▒▒▒▒▒███ ▒███             ▒▒▒▒▒▒▒▒███ ▒███▒▒█       ▒███     ▒███   ▒███  ▒███▒▒▒▒▒▒  
 ▒███  ▒███    ███  ▒███    ▒███ ▒▒███     ███    ███    ▒███ ▒███ ▒   █    ▒███     ▒███   ▒███  ▒███        
 █████ ██████████   █████   █████ ▒▒█████████    ▒▒█████████  ██████████    █████    ▒▒████████   █████       
▒▒▒▒▒ ▒▒▒▒▒▒▒▒▒▒   ▒▒▒▒▒   ▒▒▒▒▒   ▒▒▒▒▒▒▒▒▒      ▒▒▒▒▒▒▒▒▒  ▒▒▒▒▒▒▒▒▒▒    ▒▒▒▒▒      ▒▒▒▒▒▒▒▒   ▒▒▒▒▒        

Welcome to the IDAC Testnet Setup utility. This tool helps you quickly generate local IDAC blockchain networks for development using Hyperledger Besu, GoQuorum, and Tessera.

Which Ethereum client would you like to run? Default: [1]
  1. Hyperledger Besu
  2. GoQuorum
  ...
  Do you wish to enable support for private transactions? [Y/n]
  ...
  Do you wish to enable logging with Loki, Splunk, or ELK? Default: [1]
  ...
  Where should we create the config files? Default: ./idac-testnet

Once complete, your artifacts will be created at:

./idac-testnet

Change directory into the generated folder:

cd idac-testnet

CLI Options

You can skip the interactive prompts by passing arguments directly:

npx idac-testnet --clientType besu --outputPath ./idac-testnet --monitoring loki --privacy true

| Option | Description | |--------|--------------| | --clientType | Selects besu or goquorum (required) | | --privacy | Enables Tessera private transactions | | --outputPath | Target directory for artifacts | | --monitoring | Enables loki, elk, or splunk logging (default: loki) |

Starting the Network

To start the containers:

docker compose up -d

Follow the network-specific README for details:

  1. Hyperledger Besu
  2. GoQuorum

Troubleshooting

Besu — “Permission denied” for volumes

If you encounter:

java.io.IOException: Permission denied

The besu container runs as user 1000.
Fix by mapping your host user ID in the Docker Compose file:

user: "${UID:-1000}:${GID:-1000}"

Tessera image not found on macOS (platform mismatch)

You might see:

failed to solve: quorumengineering/tessera:23.4.0: no match for platform in manifest

Modify the FROM statement in idac-testnet/config/tessera/Dockerfile to:

FROM --platform=linux/amd64 quorumengineering/tessera:${TESSERA_VERSION}

Cleanup and Rebuild

If a build fails or network state becomes inconsistent:

docker compose down -v
docker system prune -f
npx idac-testnet

License

Licensed under the Apache License 2.0.
See LICENSE for full terms.

Copyright © 2025 DIGITAS PLT

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
in compliance with the License. You may obtain a copy of the License at:

   http://www.apache.org/licenses/LICENSE-2.0

IDAC TestnetBuild. Test. Verify. Scale.