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

@cognite/dune

v3.0.0

Published

Build and deploy React apps to Cognite Data Fusion

Downloads

3,221

Readme

@cognite/dune

Build and deploy React apps to Cognite Data Fusion.

Quick start

Scaffold a new app — AI skills are pulled automatically:

npx @cognite/dune create

This prompts for your app name, org, project, and cluster, then generates a fully configured React + TypeScript project.

Authentication

New apps created with npx @cognite/dune create depend on @cognite/app-sdknot @cognite/dune — for auth and host integration. @cognite/dune is the CLI used to scaffold, develop, and deploy the app; the generated app itself talks to the Fusion app host via @cognite/app-sdk's Comlink handshake. The template wires this up for you.

Legacy apps (--classic)

Apps created with --classic use the older Files API path and wrap their root in DuneAuthProvider from @cognite/dune/auth:

import { DuneAuthProvider, useDune } from '@cognite/dune/auth';

function App() {
  const { sdk, isLoading } = useDune();
  if (isLoading) return <div>Loading...</div>;
  return <MyApp sdk={sdk} />;
}

export default function Root() {
  return (
    <DuneAuthProvider>
      <App />
    </DuneAuthProvider>
  );
}

Deployment

Deploy interactively via browser OAuth:

npx @cognite/dune deploy:interactive

For CI, set your client secret as an environment variable and run:

pnpm deploy

Deployment targets are configured in app.json at the project root.

AI skills

Skills guide your AI agent (Claude Code, Cursor, etc.) through Dune-specific tasks like adding auth, building chat UIs, or reviewing code. They are pulled automatically on npx @cognite/dune create and can be synced later:

npx @cognite/dune skills pull

Browse available skills at cognitedata/dune-skills.

Requirements

  • Node.js ≥ 20
  • React ≥ 18 (optional peer dependency — only needed for auth components)

Maintenance

Updating the spec-kit vendor snapshot

The AI skill commands under _vendor/spec-kit/ are generated by spec-kit and checked in. To update to a new release, pass the target tag (requires uv, which provides uvx):

pnpm --filter @cognite/dune refresh-spec-kit v0.9.0

The refresh script stages the generated commands, templates, and shell scripts before replacing _vendor/spec-kit/. Then review the diff under _vendor/spec-kit/ and commit it.