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

noosphere-sdk

v1.0.0

Published

Noosphere Prime SIGMA Engine — sovereign risk intelligence SDK for JavaScript & TypeScript

Readme

noosphere-sdk

Sovereign risk intelligence for JavaScript & TypeScript — powered by the Noosphere Prime SIGMA Engine.

Works in Node.js, Deno, Bun, and any modern browser or edge runtime (no dependencies, uses native fetch).

npm install noosphere-sdk
# or
pnpm add noosphere-sdk
# or
bun add noosphere-sdk

Quickstart

import { NoosphereClient } from 'noosphere-sdk';

const client = new NoosphereClient();  // free public API, no key required

// Single country score
const score = await client.sigma('turkey');
console.log(score.sigma.score);   // 71.2
console.log(score.sigma.regime);  // "stress"
console.log(score.riskLevel);     // "HIGH"

// Deep regime analysis
const analysis = await client.regime('argentina');
console.log(analysis.regime_probabilities.collapse);  // 0.183
console.log(analysis.physics.minsky_moment);          // "PONZI"
console.log(analysis.prediction.hurst_exponent);      // 0.712

// Compare multiple entities, ranked by risk
const comparison = await client.compare(['turkey', 'argentina', 'italy', 'france']);
console.log(comparison.ranked_by_risk);
// [
//   { slug: 'turkey',    sigma_score: 71.2, regime: 'stress',  risk_level: 'HIGH' },
//   { slug: 'argentina', sigma_score: 68.4, regime: 'stress',  risk_level: 'HIGH' },
//   { slug: 'italy',     sigma_score: 52.1, regime: 'warning', risk_level: 'ELEVATED' },
//   { slug: 'france',    sigma_score: 47.3, regime: 'stable',  risk_level: 'MODERATE' },
// ]

// Top 5 highest-risk countries right now
const top5 = await client.topRisks(5);
top5.forEach(s => console.log(`${s.flag} ${s.name}: ${s.sigma.score}`));

// Batch fetch multiple scores in parallel
const scores = await client.batch(['turkey', 'ukraine', 'argentina']);

Authenticated access

const client = new NoosphereClient({ apiKey: 'nsp_live_your_key' });

Get an API key at noosphereprime.space.

React / Next.js example

// app/risk-dashboard/page.tsx
import { NoosphereClient } from 'noosphere-sdk';

const client = new NoosphereClient();

export default async function RiskDashboard() {
  const [turkey, italy, argentina] = await client.batch(['turkey', 'italy', 'argentina']);

  return (
    <div>
      {[turkey, italy, argentina].map(s => (
        <div key={s.slug}>
          {s.flag} {s.name} — SIGMA {s.sigma.score.toFixed(1)} [{s.sigma.regime.toUpperCase()}]
          {s.sigma.earlyWarningSignal && ' ⚠ EWS ACTIVE'}
        </div>
      ))}
      <p>Data by <a href="https://noosphereprime.space">Noosphere Prime</a></p>
    </div>
  );
}

Available entities

Call client.listEntities() or visit the public API.

Countries: turkey, argentina, ukraine, italy, france, germany, united-states, european-union, romania, hungary, poland, and more.

Sectors: banking, sovereign-debt, real-estate, energy, technology, emerging-markets.

Attribution

Required: include a link to noosphereprime.space when displaying scores publicly (CC-BY-4.0).