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

create-assistsx-vue

v0.1.6

Published

Scaffold a Vue + Vite + TypeScript AssistsX app with assistsx-js, router examples, and local/npm assistsx-js resolution.

Readme

create-assistsx-vue

Scaffold a Vue 3 + Vite + TypeScript AssistsX app with assistsx-js, including:

  • Vue Router with home, log panel, and test float panel examples
  • Classic StepImpl automation samples (src/steps/)
  • Local vs npm assistsx-js resolution (assistsx-resolve.mjs, .env.example, dev:registry)

Usage (after publish)

New folder

npx create-assistsx-vue@latest my-app
cd my-app
npm run dev

Current directory

Initialize in the working directory (no cd into a new folder):

mkdir my-app && cd my-app
npx create-assistsx-vue@latest --here
npm run dev

Equivalent:

npx create-assistsx-vue@latest .

If the target is the current directory, the folder may already contain only: .git, .gitignore, .DS_Store, or Thumbs.db (e.g. after git init). Anything else must be empty or the command exits with an error.

Local testing

From this package directory (create-assistsx-vue):

  1. Link globally (picks up the local bin and template):

    cd /path/to/create-assistsx-vue
    npm link

    Then anywhere:

    mkdir -p /tmp/scaffold-test && cd /tmp/scaffold-test
    create-assistsx-vue demo-app --skip-install

    Remove link when done: npm unlink -g create-assistsx-vue.

  2. Run the CLI directly with Node (no link):

    node /path/to/create-assistsx-vue/bin/cli.mjs ./demo-app --skip-install
  3. Dry-run pack contents (what npm would publish):

    cd /path/to/create-assistsx-vue
    npm pack --dry-run

Options

  • --here — scaffold into the current directory; do not pass a project directory. Combine with other flags as needed (e.g. npx create-assistsx-vue@latest --here --skip-install).
  • --skip-install — copy template only; run npm install yourself in the new folder.

Requirements

  • Node.js 18+