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

anuastra

v1.6.0

Published

Official Node.js SDK for the Aṇu Astra Virtual Quantum Processor and Post-Quantum Cryptography API

Readme

🌌 Aṇu Astra Node.js SDK (v1.6.0)

npm version License: MIT

The official Node.js SDK for the Aṇu Astra 1024-Qubit Virtual Quantum Processor (VQP) and Post-Quantum Cryptography (PQC) API.

Build and evaluate path-integral quantum circuits at industrial scale, export native OpenQASM 2.0 payloads, and secure your applications against future quantum threats using FIPS-standardized Kyber and Dilithium.

🚀 Installation

Install the package via npm:

npm install anuastra

⚛️ Quick Start: "Quantum Hello World" (Bell State)

The QuantumCircuit builder provides a declarative, strictly-typed interface mirroring industry standards for high-fidelity research.

import { AṇuAstra, QuantumCircuit } from 'anuastra';

const astra = new AṇuAstra({ apiKey: 'sk_live_YourAstraKeyHere' });

async function runQuantum() {
    // Scaffold a 2-qubit register
    const qc = new QuantumCircuit(2);
    
    // Create a Bell State (Superposition + Entanglement)
    qc.h(0).cx(0, 1);

    // Execute on the v1.6.0 VQP Engine
    const result = await astra.executeQuantum(qc, 1024);
    
    console.log(`Executed on: ${result.engine}`);
    console.log(`Measurement Result: ${result.results.counts}`);
    
    // Industrial Portability: Retrieve the Scientific Receipt (OpenQASM 2.0)
    console.log(`OpenQASM Receipt: ${result.telemetry.qasm_receipt}`);
}

runQuantum();

🏗️ Industrial Portability: QASM Bridge

Aṇu Astra v1.6.0 introduces a 360-degree circuit validation loop. Build natively and export to industrial standard formats for archival and peer-review.

const qc = new QuantumCircuit(3);
qc.h(0).cx(0, 1).cx(1, 2); // 3-Qubit GHZ State

// Export to OpenQASM 2.0
const qasmString = qc.toQasm();
console.log(qasmString);

🛡️ Post-Quantum Cryptography (PQC)

Secure your data with NIST-standardized algorithms (FIPS 203 & 204). Aṇu Astra handles key encapsulation and digital signatures via high-performance quantum-safe primitives.

// ML-KEM (Kyber) Key Encapsulation
const { publicKey, secretKey } = await astra.pqc.generateKeypair('kyber768');
const { ciphertext, sharedSecret } = await astra.pqc.encapsulate(publicKey);

📊 VQP v1.6.0 Resource Map

| Category | Supported Capability | Method Shortcut | | :--- | :--- | :--- | | Scaling | 1024-Qubit Virtualization | new QuantumCircuit(1024) | | Logic | 35+ Universal Quantum Gates | h(), cx(), ccx(), rz(), etc. | | Telemetry | O(N) Forward-Path Sampling | result.telemetry.execution_time_ms | | Audit | Ed25519-Signed Receipts | result.compliance.signature |


© 2026 CryptoPIX Aṇu Astra. The Future of Decentralized Intelligence.