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

@mysten-incubation/devstack

v0.0.1

Published

Next-generation Sui devstack package.

Downloads

219

Readme

@mysten-incubation/devstack

Devstack composes a local Sui development environment from one TypeScript config. It can boot Sui, fund accounts, publish Move packages, run the dev wallet, start app servers, wire services such as Walrus, Seal, and DeepBook, and generate typed files for app and test code.

The current docs live at https://ts-sdks-incubation.vercel.app/devstack.

Quick Start

Scaffold a new app from the canonical template:

pnpm create @mysten-incubation/devstack-app my-app
cd my-app
pnpm dev

Or add devstack to an existing app:

pnpm add @mysten-incubation/devstack @mysten-incubation/dev-wallet @mysten/signers
pnpm add -D @mysten-incubation/tsconfig

Then create a devstack.config.ts in your app:

import { dirname, resolve } from 'node:path';
import { fileURLToPath } from 'node:url';

import {
	account,
	defineDevstack,
	HOST_SERVICE_PORT_TOKEN,
	hostService,
	localPackage,
	sui,
	wallet,
} from '@mysten-incubation/devstack';

const HERE = dirname(fileURLToPath(import.meta.url));
const DEV_PORT = 5173;

const localnet = sui();
const publisher = account('publisher');
const alice = account('alice');

const hello = localPackage('hello', {
	sourcePath: resolve(HERE, 'move/hello'),
	publisher,
});

const devWallet = wallet({
	accounts: [publisher, alice],
});

const app = hostService({
	name: 'app',
	script: `pnpm exec vite --host 127.0.0.1 --strictPort --port ${HOST_SERVICE_PORT_TOKEN}`,
	cwd: HERE,
	port: DEV_PORT,
	ready: { kind: 'http' },
	after: [hello, devWallet] as const,
});

export default defineDevstack({
	members: [localnet, app],
	stackName: 'main',
	codegen: { outputDir: 'src/generated' },
});

Run the stack during development:

pnpm devstack up

Reconcile from another shell, CI, or before typechecking, building, or tests:

pnpm devstack apply

If pnpm devstack up is already live for this stack, apply asks that supervisor to reconcile and waits for completion. Without a live supervisor, it runs one-shot setup and exits.

Generated files are written under src/generated by default. Runtime state, manifests, snapshots, and logs stay under .devstack/.

Package Surface

  • Root API: stack composition, built-in factories, plugin-author helpers, and public types.
  • CLI: devstack up, apply, status, doctor, config, schema --json, snapshot, prune, and wipe.
  • Build integrations: @mysten-incubation/devstack/vitest, /playwright, and /runtime.

App code should consume generated files and the runtime manifest. It should not import devstack engine internals directly.

Docs