A minimal scaffolder/generator for React + TypeScript projects using esbuild as the compiler and bundler. Current stable version is 0.0.22. It focuses on generating the absolute minimum of files and dependencies, resulting in a small `node_modules` size and fast npm installs. Unlike larger scaffolders like Create React App or Vite templates, create-tsreact provides a bare-bones setup with only essential dependencies, using esbuild for fast builds targeting ES2022. The generated project includes Prettier for formatting and scripts for dev and build. Recommended for learners who want to understand the tech stack without boilerplate.
npm install create-tsreactNo compatibility data collected yet for this library.
Scaffold a new React+TypeScript project using the latest version of create-tsreact, install dependencies, and start the development server.
Ensure Node.js v14 or later is installed.
Use ESM syntax; do not rely on CommonJS require().
Use `npm run dev` which runs esbuild in watch mode.
Use `npm create tsreact@latest <appname>` instead of `npx create-tsreact`.
Update esbuild to 0.17.0 or later, or change target to 'es2020' in package.json scripts.
No dependency data recorded yet.