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

@invinite-org/create-chartlang

v0.1.4

Published

npm create @invinite-org/chartlang — scaffold a runnable chartlang starter app (TanStack Start + your chosen chart library).

Readme

@invinite-org/create-chartlang

Stability: experimental.

The npm create @invinite-org/chartlang installer — scaffold a runnable chartlang starter app (TanStack Start editor + live chart + Yahoo Finance market data + SQLite) with your chosen chart library wired in. Market data needs no API key.

Usage

npm create @invinite-org/chartlang@latest my-app
# or: pnpm create @invinite-org/chartlang my-app · npx @invinite-org/create-chartlang my-app

It clones apps/react-starter from GitHub, prompts for a chart library (default echarts), vendors the chosen adapter from the CLI's offline bundle, rewrites the single activeAdapter.ts seam + the package.json workspace deps, writes a .env, and (optionally) installs.

create-chartlang [dir] [--library <id>] [--pm <npm|pnpm|yarn|bun>] [--no-install] [--yes]
  • dir — target directory (default ./chartlang-starter).
  • --library <id>echarts (default) · lightweight-charts · uplot · konva · canvas2d. Skips the prompt.
  • --pm — package manager for the install + printed next steps.
  • --no-install — skip the dependency install.
  • --yes — accept defaults and overwrite a non-empty target dir.

Public surface

The installer is also importable for programmatic scaffolding / testing:

pnpm add @invinite-org/create-chartlang
import { runCreateChartlang, defaultDeps } from "@invinite-org/create-chartlang";

await runCreateChartlang(["my-app", "--library", "echarts"], defaultDeps({
  cloneStarter: async () => {/* clone the starter tree */},
  runInstall: async () => {/* run the package install */},
}));

runCreateChartlang(argv, deps) runs the flow against an injectable IO seam (CreateChartlangDeps); the network clone + install are injected so the rest is offline + testable. Also exported: seamTemplateFor, rewriteStarterPackageJson, bundleChartlangVersions, resolveAdapter, CHARTLANG_VERSIONS, STARTER_CLONE_REF.

Switching libraries later

npx @invinite-org/chartlang-cli add-adapter <id>
# then edit src/lib/chart/activeAdapter.ts

Docs

See https://chartlang.invinite.com for the full starter guide.

License

MIT