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-js-universal-app

v1.1.2

Published

An interactive CLI scaffolding tool to spin up React (bare/Vite), Next.js, Vue, Angular, or Vanilla JS projects in seconds.

Readme

🚀 create-js-universal-app

An interactive, high-performance CLI scaffolding tool to spin up modern, pre-configured frontend projects in seconds.

Pick your platform, name your project, and start coding — no boilerplate headaches.


🎬 Demo


✨ Supported Platforms

| Platform | Template Key | Bundler | Description | | ------------------- | ------------ | ---------------- | ------------------------------------- | | React.js (Bare) | react-bare | Webpack + Babel | Standard production bundler setup | | React.js (Vite) | react-vite | Vite | Ultra-fast HMR development | | Next.js | nextjs | Next.js built-in | SSR & App Router framework | | Vue.js | vue | Vite | Composition API with SFC support | | Angular | angular | Angular CLI | Enterprise-ready TypeScript framework | | Vanilla JS | vanilla | Vite | Pure JavaScript, HTML & CSS |


🚀 Quick Start

Run the scaffolder anywhere using npx (no installation required):

npx create-js-universal-app

You will be guided through a simple interactive prompt:

  1. Enter your project name (e.g., my-cool-app).
  2. Select your framework/platform from the 6 options above.
  3. The CLI copies the template, customizes package.json, and outputs the starting commands.

🛠️ Local Development & Testing

If you are developing this CLI locally or customizing its templates:

1. Direct Execution

Test the script immediately from the package root:

node ./bin/index.js

2. Global Link Testing

Simulate a full npx run by linking the package executable to your system globally:

# Link the CLI
npm link

# Run it from any folder on your machine
create-js-universal-app

To remove the global link when you are done testing:

npm unlink -g create-js-universal-app

📂 Project Structure

create-js-universal-app/
├── bin/
│   └── index.js              # Interactive CLI entrypoint
├── templates/
│   ├── react-bare/            # React + Webpack + Babel
│   ├── react-vite/            # React + Vite
│   ├── nextjs/                # Next.js (App Router)
│   ├── vue/                   # Vue 3 + Vite
│   ├── angular/               # Angular 18 (Standalone)
│   └── vanilla/               # Vanilla JS + Vite
├── package.json
└── README.md

📂 Adding Custom Templates

You can easily extend the CLI to support new frameworks (e.g., Svelte, Astro, Solid):

  1. Add your pre-configured boilerplate folder under templates/ (e.g., templates/svelte).
  2. Open bin/index.js and add an entry in the options array:
    { value: 'svelte', label: 'Svelte (Vite)', hint: 'Compiler-first UI framework' }
  3. Add the label to the platformLabels object:
    'svelte': 'Svelte',
  4. Republish the package to npm.

📅 Maintenance & Update Schedule

To keep this scaffolding tool robust, secure, and modern, follow this recommended maintenance schedule:

🔄 Every 3 Months (Quarterly Checkup)

  • Dependency Audit: Run npm audit inside the root folder and in each template directory to patch security vulnerabilities.
  • Minor Upgrades: Upgrade minor versions of packages inside the template package.json files (e.g., updating Vite or React minor patches).

🚀 Every 6 Months (Major Framework Alignment)

  • Major Upgrades: Check for major releases of Next.js, Angular, React, and Vue.
  • Template Updates: Update the code inside the corresponding templates if any APIs are deprecated by new framework versions.

📄 License

MIT