🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@supertiny99/easy-create

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@supertiny99/easy-create

A universal CLI tool to create projects using official framework scaffolding

latest
npmnpm
Version
1.0.3
Version published
Maintainers
1
Created
Source

easy-create

A universal CLI tool to create projects using official framework scaffolding.

Note: This project uses pnpm as the package manager. Created projects will also use pnpm by default.

Features

  • Interactive project type selection
  • Support for 9+ popular frameworks
  • Uses pnpm for faster, more efficient installs
  • Simple, clean CLI interface

Supported Frameworks

FrameworkDescription
VueVue 3 project (official scaffold)
ReactReact + Vite project
FlutterFlutter mobile/desktop app
WXTWeb browser extension framework
Next.jsNext.js React framework
ExpressExpress backend framework
React NativeReact native mobile apps
UniAppUniApp cross-platform framework
TauriTauri desktop applications

Installation

# Using pnpm (recommended)
pnpm dlx @supertiny99/easy-create

# Using npx
npx @supertiny99/easy-create

# Global installation
pnpm add -g @supertiny99/easy-create
easy-create

Usage

Interactive Mode

easy-create

Follow the prompts to select a template and enter your project name.

Direct Mode

easy-create <template> <project-name>

Example:

easy-create vue my-vue-app
easy-create react my-react-app
easy-create next my-next-app

List Templates

easy-create list

Examples

Create a Vue project:

pnpm dlx @supertiny99/easy-create vue my-vue-app

Create a React project:

pnpm dlx @supertiny99/easy-create react my-react-app

Create a Next.js project:

pnpm dlx @supertiny99/easy-create next my-next-app

Development

# Install dependencies
pnpm install

# Build
pnpm run build

# Run locally
pnpm run dev

# Link for global testing
pnpm link -g
easy-create

Publishing

This project uses GitHub Actions to automatically publish to npm when a version tag is pushed.

Setup (First Time)

Release Process

To publish a new version:

# Bump version and create git tag
npm version patch  # or minor, major

# Push commits and tags
git push origin main
git push origin v1.0.3  # replace with actual version

GitHub Actions will automatically:

  • Build the project
  • Publish to npm
  • Make the package available as @supertiny99/easy-create

Verification

After publishing, verify with:

npm view @supertiny99/easy-create

Or install globally:

pnpm add -g @supertiny99/easy-create
easy-create list

License

MIT

Keywords

cli

FAQs

Package last updated on 26 Jan 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts