@vaporweb/create-app
v1.0.2
Published
Create React apps in one command.
Downloads
17
Readme
Create App
Create React apps in one command.
npx @vaporweb/create-app my-app
cd my-app
npm start
or.... with the yarn create
command:
yarn create @vaporweb/app my-app
cd my-app
yarn start
or.... with npm init.
npm init @vaporweb/app my-app
cd my-app
npm start
You can also initialize a project with TypeScript
yarn create @vaporweb/app my-app --typescript
cd my-app
yarn start