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

creght-cli

v0.4.1

Published

Creght CLI for syncing local site code with Creght.

Readme

Creght CLI

Creght CLI is a thin local bridge for syncing site code between a local directory and Creght.

The CLI can also run a local Vite preview for pulled Creght projects. Creght remains responsible for cloud rendering, CMS, assets, and the realtime preview environment.

Install

Using npm:

npm install -g creght-cli

Build from source:

cd /Users/bysir/dev/bysir/creght-cli
go build -o creght ./cmd/creght

Optional:

mv ./creght /usr/local/bin/creght

Login

For production:

creght login

For local development:

CREGHT_API_HOST=http://localhost:8433 creght login --web=http://localhost:5173

The command opens a browser authorization page. After authorization succeeds, the CLI stores the token in:

~/Library/Application Support/creght/config.json

The config file contains the current API host and CLI tokens. Tokens are stored per API host, so logging in to https://creght.cn, https://creght.com, or a local backend does not overwrite the other hosts' login state.

When --web is omitted, the CLI uses CREGHT_WEB_HOST if set. For local API hosts such as localhost or 127.0.0.1, it defaults to http://localhost:5173. For production, the default API host and default web host are both https://creght.cn.

Logout

Remove the saved CLI login for the current API host:

creght logout

When CREGHT_API_HOST is set, logout removes only that host's token. Other saved hosts remain logged in. If the last saved token is removed, the config file is deleted.

List Projects

creght project list

For local development:

CREGHT_API_HOST=http://localhost:8433 creght project list

Example output:

project_id    Project Name
  project_id/site_id    Site Name

Use the project_id/site_id value with pull, push, and sync.

Create Project

Create a new project:

creght project create --name="My Project"

For local development:

CREGHT_API_HOST=http://localhost:8433 creght project create --name="My Project"

You can also create from an existing project or template when the backend allows it:

creght project create --name="My Project" --from_id=<project_id>
creght project create --name="My Project" --tpl_id=<template_id>

Pull Site Workspace

Download the current remote site workspace into a local directory:

creght pull --site_id=<project_id>/<site_id> --dir=./mysite

For local development:

CREGHT_API_HOST=http://localhost:8433 creght pull --site_id=<project_id>/<site_id> --dir=./mysite

The command writes a file-based workspace:

mysite/
  AGENTS.md
  page/...
  component/...
  talizen.config.ts
  backend/
    func/
      booking.ts
      profile/settings.ts

Local paths mirror remote site paths exactly: page/Index.tsx maps to /page/Index.tsx and backend/func/booking.ts maps to /backend/func/booking.ts.

Every file in the workspace is an ordinary site file. Func backend code is simply the set of site files under backend/func/; for example backend/func/booking.ts is the Func with key booking, and backend/func/profile/settings.ts is profile/settings.

Local Vite Preview

Creght projects pulled by the CLI usually do not have their own package.json or node_modules. The local preview plugin therefore uses Vite only for local file serving and TSX transpilation; third-party packages continue to resolve through the Creght import map, matching the Web editor preview model. In creght dev, the CLI serves the workspace directory, loads the platform import map from server system info, and passes it to the Vite plugin; the plugin's local map is only a fallback.

Install Vite in the local project folder:

cd ./mysite
npm init -y
npm install -D vite esbuild creght-cli

Create vite.config.mjs:

import { defineConfig } from 'vite'
import creght from 'creght-cli/vite'

export default defineConfig({
  plugins: [
    creght({
      apiHost: 'https://creght.cn',
      projectId: '<project_id>',
      // token: process.env.CREGHT_TOKEN,
    }),
  ],
})

Run it:

npx vite --host 0.0.0.0

The plugin maps /page/Index.tsx to /, /page/About.tsx to /about, starts from the platform import map, merges creght.config.ts import-map entries, loads /index.css through the Tailwind browser runtime, proxies local /api/* requests to apiHost, calls page getServerSideProps() in the browser for a preview-only first render, and uses Vite HMR to re-import the current page module after local file changes without a full page reload.

Push Local Changes

Push the current local directory snapshot to Creght and exit:

creght push --site_id=<project_id>/<site_id> --dir=./mysite

For local development:

CREGHT_API_HOST=http://localhost:8433 creght push --site_id=<project_id>/<site_id> --dir=./mysite

The CLI scans the local workspace and diffs every file against the remote site files. Local paths map to remote paths as-is, so page/Index.tsx becomes /page/Index.tsx and backend/func/**/*.ts becomes /backend/func/**/*.ts.

All files flow through the same site file mechanism (file_list / site_action). Func code is not a separate resource; creating, editing, renaming, or deleting a file under backend/func/ creates, updates, renames, or deletes the corresponding site file, and Func code is versioned and published together with the rest of the site.

Sync Local Changes

Run watch mode for a local directory:

creght sync --site_id=<project_id>/<site_id> --dir=./mysite

For local development:

CREGHT_API_HOST=http://localhost:8433 creght sync --site_id=<project_id>/<site_id> --dir=./mysite

sync first pushes the current local snapshot, then keeps running and automatically listens for local file changes. When any workspace file (including Func code under backend/func/) changes locally, the CLI updates the corresponding remote site file in realtime. The command also prints the remote preview URL when available.

Local Web Editor Bidirectional Sync

Run local files and the online Creght editor against the same cloud realtime files:

creght dev --site_id=<project_id>/<site_id> --dir=./mysite

For local backend or web development:

CREGHT_API_HOST=http://localhost:8433 creght dev --web=http://localhost:5173 --site_id=<project_id>/<site_id> --dir=./mysite

The command prints the online Web editor URL, pushes local file changes to Creght, and listens to the existing WebSocket collaboration channel so editor changes are written back to the local directory. MVP conflict handling is last write wins.

dev also starts a local Vite preview by default:

  VITE v8.0.14  ready in 529 ms
  ➜  Local:   http://localhost:5173/
Local Vite:  started (preferred http://localhost:5173; use the Vite Local URL above)

Use --preview-port or --preview-host to change the preferred local preview address. If that port is occupied, Vite uses its normal auto-port behavior and prints the actual URL in the terminal:

creght dev --site_id=<project_id>/<site_id> --dir=./mysite --preview-port=5174

Disable the local preview when you only want file sync:

creght dev --site_id=<project_id>/<site_id> --dir=./mysite --no-preview

The preview uses the bundled creght-cli/vite plugin. If the site directory has node_modules/.bin/vite, that local Vite is used; otherwise the CLI starts a hidden temporary Vite runtime under .creght/ and installs vite plus esbuild there.

Local file changes are pushed through Vite HMR as a React root re-render. This avoids a browser-level refresh, but it is not yet full React Fast Refresh and does not guarantee component state preservation.

Open Preview

Open the remote preview URL for a site in the browser:

creght preview --site_id=<project_id>/<site_id>

For local development:

CREGHT_API_HOST=http://localhost:8433 creght preview --site_id=<project_id>/<site_id>

Publish Site

Publish a site:

creght publish --site_id=<project_id>/<site_id>

With a publish note:

creght publish --site_id=<project_id>/<site_id> --note="Update homepage copy"

For local development:

CREGHT_API_HOST=http://localhost:8433 creght publish --site_id=<project_id>/<site_id>

Manage CMS Collections

List CMS collections:

creght cms collections --site_id=<project_id>/<site_id>

Create a collection from a JSON Schema file:

creght cms collection create --site_id=<project_id>/<site_id> --key=blogs --name="Blogs" --schema=./blogs.schema.json

Update or delete by collection key or id:

creght cms collection get --site_id=<project_id>/<site_id> --key=blogs
creght cms collection update --site_id=<project_id>/<site_id> --key=blogs --schema=./blogs.schema.json
creght cms collection delete --site_id=<project_id>/<site_id> --key=blogs

--schema can point to either a raw JSON Schema object or a full collection JSON object containing fields such as key, name, desc, and json_schema.

Manage CMS Content

List, get, create, update, and delete content entries:

creght content list --site_id=<project_id>/<site_id> --collection=blogs
creght content get --site_id=<project_id>/<site_id> --collection=blogs --slug=hello-world
creght content get --site_id=<project_id>/<site_id> --collection=blogs --slug=hello-world --out=./content.json
creght content create --site_id=<project_id>/<site_id> --collection=blogs --data=./content.json --slug=hello-world
creght content update --site_id=<project_id>/<site_id> --collection=blogs --id=<content_id> --data=./content.json
creght content delete --site_id=<project_id>/<site_id> --collection=blogs --id=<content_id>

--data can point to either a plain CMS content body or a full content object. A plain content body may include a business field named body. The CLI treats JSON as a full content object only when it includes wrapper fields such as id, slug, content_app_id, json_schema, status, sort, or tags.

If your business JSON has a top-level slug, do not pass it as plain body JSON because slug is a content wrapper field. Either pass the slug as a flag and omit it from --data:

creght content create --site_id=<project_id>/<site_id> --collection=prompts --data=./content-body.json --slug=typography-v02

Or use a full content object and put business fields under body:

{
  "slug": "typography-v02",
  "body": {
    "title": "Typography V.02",
    "description": "100vh",
    "tags": ["skill"]
  }
}

Manage Forms

List, create, update, and delete forms:

creght form list --site_id=<project_id>/<site_id>
creght form create --site_id=<project_id>/<site_id> --key=contact-form --name="Contact form" --schema=./contact.schema.json
creght form get --site_id=<project_id>/<site_id> --key=contact-form
creght form update --site_id=<project_id>/<site_id> --key=contact-form --schema=./contact.schema.json
creght form delete --site_id=<project_id>/<site_id> --key=contact-form

Inspect and delete form submissions:

creght form logs --site_id=<project_id>/<site_id> --key=contact-form
creght form log get --site_id=<project_id>/<site_id> --key=contact-form --log_id=<log_id>
creght form log delete --site_id=<project_id>/<site_id> --key=contact-form --log_id=<log_id>

Submit a form payload through the platform API:

creght form submit --site_id=<project_id>/<site_id> --key=contact-form --data=./payload.json

After creating or changing CMS collections or forms, run creght pull again to refresh generated files such as /types/cms.d.ts and /types/form.d.ts before writing code that imports those types.

Manage Backend Tables

Project JSON tables provide persistent data for Creght/Talizen Func code through ctx.db.*.

creght table list --site_id=<project_id>/<site_id>
creght table create --site_id=<project_id>/<site_id> --key=appointments --name="Appointments" --schema=./appointments.schema.json
creght table get --site_id=<project_id>/<site_id> --key=appointments
creght table update --site_id=<project_id>/<site_id> --key=appointments --schema=./appointments.schema.json
creght table delete --site_id=<project_id>/<site_id> --key=appointments

Manage seed or operational records:

creght table record list --site_id=<project_id>/<site_id> --table=appointments
creght table record list --site_id=<project_id>/<site_id> --table=appointments --where=./where.json
creght table record get --site_id=<project_id>/<site_id> --table=appointments --id=<record_id> --out=./record.json
creght table record create --site_id=<project_id>/<site_id> --table=appointments --data=./record.json
creght table record update --site_id=<project_id>/<site_id> --table=appointments --id=<record_id> --data=./patch.json
creght table record delete --site_id=<project_id>/<site_id> --table=appointments --id=<record_id>

record update sends a patch body to the backend. Existing fields are merged, and a null field value removes that field.

Func Backend Code As Files

Func is for small project-level backend workflows such as bookings, RSVP, availability checks, protected status updates, and JSON-table reads/writes. Func code is stored as ordinary site source files under backend/func/; there is no separate Func resource. A Func's key is its extensionless path under backend/func/, for example booking or profile/settings.

The workflow is the same as for any site file:

  1. Run creght pull --site_id=<project_id>/<site_id> --dir=./mysite.
  2. Edit or create files under ./mysite/backend/func/.
  3. Run creght push --site_id=<project_id>/<site_id> --dir=./mysite, or keep creght sync / creght dev running.

Examples:

  • backend/func/booking.ts <-> remote site file /backend/func/booking.ts, Func key booking
  • backend/func/profile/settings.ts <-> remote /backend/func/profile/settings.ts, Func key profile/settings

Because Func code is just a site file, it is versioned and published together with the site, and it participates in the same 3-way merge and conflict detection as every other file. Deleting a local Func file deletes the remote site file on the next push/sync; renaming is treated as delete + create.

Func files should use ESM exports and the (input, ctx) signature:

export function create(input, ctx) {
  return ctx.db.insert("appointments", input)
}

Page and component code should call Func through the talizen/func SDK:

import { invoke } from "talizen/func"

await invoke("booking.create", input)

Use talizen/auth for login, registration, logout, current-user state, and OAuth. Do not implement passwords, sessions, or OAuth callbacks in Func.

func run is the only Func command; it posts to a dedicated invocation endpoint to self-test a Func method with sample input:

creght func run --site_id=<project_id>/<site_id> --key=booking.create --input=./input.json

The output matches the Func HTTP response protocol: successful runs print {"result": ...} and thrown Func errors print {"error": "..."}. There is no top-level ok execution wrapper.

There are no creght func list/get/create/update/delete commands. Manage Func code by editing backend/func files and syncing them with pull/push/sync/dev like any other site file; func run only runs sample input.

Upload Assets

Upload a local file through the Creght site asset flow:

creght upload --site_id=<project_id>/<site_id> --file=./image.png

The command prints the public file URL by default. Use --json to inspect the full upload metadata, including site_path, a stable /_assets/... path that can be used from Creght site code:

creght upload --site_id=<project_id>/<site_id> --file=./image.png --json

Optional flags:

creght upload --site_id=<project_id>/<site_id> --file=./image.png --name=hero.png --mimetype=image/png

Push And Sync Boundary

The current MVP push/sync mode is one-way:

local directory -> Creght remote site

push fetches the remote file list to build the local path to remote file id mapping, scans the local directory, uploads the current local snapshot, and then exits.

sync is watch mode. It performs the same initial local snapshot push, then keeps running and automatically listens for later local changes.

Neither command pulls Web editor changes back to the local directory while running. If you edit the same site in the Web editor, run pull manually or restart from a clean local copy before continuing.

Use a test project/site while validating the CLI. Do not run push or sync against production content unless the local directory is intended to be the source of truth.

Commands

Creght CLI is a local bridge for Creght site code. It can authenticate with Creght, list projects and sites, pull remote site files into a local directory, push local files back to Creght, watch local files for realtime sync, open the remote preview, and publish a site.

The CLI commands still use the Creght backend and web app for the canonical preview. The Vite plugin is a local development helper and intentionally does not implement full production SSR.

creght login [--web=https://creght.cn]
creght logout
creght project list
creght pull --site_id=<project_id>/<site_id> --dir=./mysite
creght push --site_id=<project_id>/<site_id> --dir=./mysite
creght sync --site_id=<project_id>/<site_id> --dir=./mysite
creght dev --site_id=<project_id>/<site_id> --dir=./mysite [--web=https://creght.cn]
creght preview --site_id=<project_id>/<site_id>
creght publish --site_id=<project_id>/<site_id> [--note=<note>]
creght cms collections --site_id=<project_id>/<site_id>
creght cms collection create --site_id=<project_id>/<site_id> --key=<key> --name=<name> --schema=./schema.json
creght content list --site_id=<project_id>/<site_id> --collection=<key>
creght content create --site_id=<project_id>/<site_id> --collection=<key> --data=./content.json
creght form list --site_id=<project_id>/<site_id>
creght form create --site_id=<project_id>/<site_id> --key=<key> --name=<name> --schema=./schema.json
creght table list --site_id=<project_id>/<site_id>
creght table record create --site_id=<project_id>/<site_id> --table=<key> --data=./record.json
creght func run --site_id=<project_id>/<site_id> --key=<key.method> --input=./input.json
creght upload --site_id=<project_id>/<site_id> --file=./image.png
creght version

Command meanings:

  • login: Authenticate this machine with Creght and save a CLI token for the current API host.
  • logout: Remove the saved CLI login for the current API host.
  • project: List available projects and sites. Use project_id/site_id with site commands. Also supports project create.
  • pull: Download site files (including Func code under backend/func/) into a local workspace.
  • push: Push the current local workspace snapshot to the remote site/project.
  • sync: Watch mode; push the current snapshot, then keep listening for local changes.
  • dev: Bidirectionally sync local files with cloud realtime files and the online Web editor.
  • preview: Open the remote preview URL for a site in the browser.
  • publish: Publish a site to make the current remote site version live.
  • cms: Manage CMS collections.
  • content: Manage CMS content entries.
  • form: Manage forms and form submissions.
  • table: Manage project JSON tables and records used by Func.
  • func: Run project Func backend code with sample input. Func code itself is edited as backend/func site files and synced with pull/push/sync/dev.
  • upload: Upload a local file as a Creght site asset and print its URL.
  • version: Print the installed CLI version.

Release

GitHub Releases are created by GitHub Actions when a tag matching v* is pushed. The same workflow publishes the npm package creght-cli.

The release workflow builds binaries for:

  • macOS: darwin/amd64, darwin/arm64
  • Linux: linux/amd64, linux/arm64
  • Windows: windows/amd64, windows/arm64

Create and push a release tag:

git tag v0.1.0
git push origin v0.1.0

Before pushing a release tag, make sure package.json has the same version as the tag without the leading v, and configure npm Trusted Publishing for creght-cli with GitHub repository creght/creght-cli and workflow filename release.yml.

If this repository is mirrored to GitHub with a different remote name, push the tag to that remote:

git remote add github [email protected]:creght-dev/creght-cli.git
git push github main
git push github v0.1.0