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

@artifacta/cli

v0.1.1

Published

CLI for the Artifacta open protocol — publish HTML/JS data applications, bind datasets, and manage sync from local tools and agents.

Readme

@artifacta/cli

Published on npm: https://www.npmjs.com/package/@artifacta/cli

Lightweight CLI for pushing locally generated HTML dashboards, datasets, and sync configuration JSON to a running Artifacta instance.

Install

npm install -g @artifacta/cli

Or run it without a global install:

npx @artifacta/cli@latest --help

Required Environment

export ARTIFACTA_URL=https://artifacta.example.com
export ARTIFACTA_API_KEY=art_...

Common Commands

artifacta projects list [--search growth]
artifacta --json projects list
artifacta doctor [--app-url http://localhost:3000]
artifacta projects upload --file ./dashboard.zip --name "Weekly Growth" --visibility team [--folder-id folder_123]
artifacta projects upload --file ./dashboard.html --name "Single Page"
artifacta projects update-html --project-id proj_123 --file ./dashboard-v2.zip
artifacta sync-scripts list --project-id proj_123
artifacta sync-scripts trigger --project-id proj_123 --script-id sscript_abc123
artifacta sync-scripts status --project-id proj_123 --script-id sscript_abc123
artifacta sync-scripts set --project-id proj_123 --script-id sscript_abc123 --config-file ./secrets.json
artifacta bundle run-script --file ./scripts/sync.py --bundle-root ./dist --outputs data/sales.csv
artifacta datasets list [--source manual|all]
artifacta datasets upload --project-id proj_123 --file ./growth.csv --name "Weekly Growth Data"
artifacta datasets replace --project-id proj_123 --dataset-id ds_123 --file ./growth-v2.csv
artifacta datasets sync set --project-id proj_123 --dataset-id ds_123 --config-file ./sync.json

Datasets are static (manual) by default. Dynamic updates use project-level bundle sync scripts (sync-scripts ...); the old datasets sync set --source-type / sync trigger are deprecated (external sources removed; sync trigger returns 410).

ARTIFACTA_URL may be either the app root (https://artifacta.example.com) or an API base ending in /api/v1; the CLI normalizes both.

Use --json for stable agent/CI output. Without it, list commands use tables and write commands print short human summaries.

ZIP uploads use POST /upload-sessions automatically. Put data files in the ZIP; optionally declare datasets and sync_scripts in artifacta.json — see docs/protocol/manifest-v1.md.

See the main repository docs for onboarding, API details (docs/API.md — bundle script sync section), and release guidance.