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

@holoscript/partner-sdk

v7.0.0

Published

Partner SDK for integrating with the HoloScript ecosystem

Readme

@holoscript/partner-sdk

Official SDK for partners integrating with the HoloScript ecosystem.

Installation

npm install @holoscript/partner-sdk

Quick Start

import { createPartnerSDK } from '@holoscript/partner-sdk';

const sdk = createPartnerSDK({
  partnerId: 'your-partner-id',
  apiKey: 'your-api-key',
  webhookSecret: 'your-webhook-secret',
});

// Use the API client
const pkg = await sdk.api.getPackage('@your-org/package');

// Handle webhooks
sdk.webhooks?.onPackagePublished((event) => {
  console.log('New package:', event.data.name);
});

// Access analytics
const stats = await sdk.analytics.getDownloadStats('@your-org/package', 'month');

Features

Registry API

import { createRegistryClient } from '@holoscript/partner-sdk';

const client = createRegistryClient({
  credentials: { partnerId: 'id', apiKey: 'key' },
});

// Search packages
const results = await client.searchPackages('vr physics');

// Get package info
const info = await client.getPackage('@scope/name');

// Publish package
await client.publishPackage(tarball, metadata);

Webhooks

import { createWebhookHandler } from '@holoscript/partner-sdk';

const webhooks = createWebhookHandler({
  signingSecret: 'secret',
  partnerId: 'id',
});

webhooks.onPackagePublished((e) => console.log(e));
webhooks.onVersionDeprecated((e) => console.log(e));
webhooks.onSecurityAlert((e) => console.log(e));

// Use with Express
app.post('/webhooks', webhooks.middleware());

Analytics

import { createPartnerAnalytics } from '@holoscript/partner-sdk';

const analytics = createPartnerAnalytics({
  partnerId: 'id',
  apiKey: 'key',
});

const downloads = await analytics.getDownloadStats('@pkg/name', 'month');
const health = await analytics.getPackageHealth('@pkg/name');

Runtime Embedding

import { createRuntime } from '@holoscript/partner-sdk';

const runtime = createRuntime({
  sandbox: true,
  permissions: ['audio', 'physics'],
});

await runtime.load(holoScriptSource);
runtime.start();

Export Adapters

Export to game engines:

import {
  createUnityAdapter,
  createUnrealAdapter,
  createGodotAdapter,
} from '@holoscript/partner-sdk';

// Unity
const unity = createUnityAdapter({
  unityVersion: '2023',
  renderPipeline: 'urp',
  xrSupport: true,
  outputDir: './unity-export',
});
const unityAssets = unity.export(sceneGraph);

// Unreal
const unreal = createUnrealAdapter({
  engineVersion: '5.4',
  projectName: 'MyProject',
  vrSupport: true,
  outputDir: './unreal-export',
});
const unrealAssets = unreal.export(sceneGraph);

// Godot
const godot = createGodotAdapter({
  godotVersion: '4.3',
  projectName: 'MyProject',
  useGDScript: true,
  outputDir: './godot-export',
});
const godotAssets = godot.export(sceneGraph);

Branding Kit

import { createBrandingKit, BRAND_COLORS } from '@holoscript/partner-sdk';

const branding = createBrandingKit();

// Generate partner badge
const badgeHtml = branding.generateBadge({
  tier: 'certified',
  style: 'badge',
  theme: 'dark',
  size: 'medium',
});

// Get CSS variables
const css = branding.generateCSSVariables();

// Use brand colors
console.log(BRAND_COLORS.primary.hex); // #6366F1

License

MIT