create-enchilada
v1.2.0
Published
CLI scaffold tool to create web app projects from templates: React, Vanilla JS, Node/Express and more.
Maintainers
Readme
Building apps with JavaScript — as if they were enchiladas!
create-enchilada is a CLI scaffold tool to quickly create web app projects from templates. Run a single command and follow the interactive prompts to pick a template and name your project. Supports React, Vanilla JS, Node/Express and more.
Usage
With npm
npm create enchilada@latestWith pnpm
pnpm create enchilada@latestWith yarn
yarn create enchiladaCLI Options
Help:
npm create enchilada --helpor
npm create enchilada -hList available templates:
npm create enchilada --listor
npm create enchilada -lTemplate:
npm create enchilada -- --template [template-name] [app-name]or
npm create enchilada -- -t [template-name] [app-name]E.g:
npm create enchilada -- --template vanilla-js my-appScaffold into current directory:
Use . as the app name to scaffold into the current directory instead of creating a new one:
npm create enchilada -- --template vanilla-js .Or via interactive prompts, enter . when asked for the app name.
Template List
| TEMPLATE | DESCRIPTION | | :------- | :---------- | | vanilla-js | Vanilla JS + Vite | | react | React + Vite | | react-webpack | React + Webpack | | react-typescript | React + Vite + TypeScript + ESlint | | react-dev | React + Vite + Tailwind CSS + ESlint + React Testing Library | | react-dev-typescript | React + Typescript + Vite + Tailwind CSS + ESlint + React Testing Library | | react-dev-webpack | React + Webpack + Tailwind CSS + ESlint + React Testing Library | | react-rspack | React + Rspack | | node-express | NodeJS + Express + Sequelize + ESlint + Jest |
