ALRIGHT REACT APP

Professional React app generator. Shipped with an exposed, unopinionated, highly-performant config. Jest-SWC, Storybook, SWC, Typescript, Webpack 5.

alright-react-app-in-terminal

GETTING STARTED

In your terminal, type:

npx alright-react-app

The npx command is available if npm is globally installed on your computer. Alright Create App will ask you to enter an app name. Then, you only have to press enter.

The following folder will be created at the root of your current working directory:

my-app
├── webpack.config.js
├── tsconfig.json
├── README.md
├── package.json
├── jest.swc.config.js
├── custom.d.ts
├── .swcrc
├── .gitignore
├── .eslintrc.js
├── .eslintignore
├── .env
└── src
    ├── index.tsx
    ├── index.html
    ├── app.tsx
    ├── app.test.ts
    └── pages
        └── home
            ├── index.tsx
            ├── home.css
    └── components
        └── error-boundary
            ├── index.tsx
            ├── layout.tsx
        └── title
            ├── index.tsx
            ├── stories.tsx
     └── assets
        └── images
            ├── favicon.png
        └── svg
            ├── logo.svg
└── .storybook
    ├── main.js
    ├── preview.js

Once the app is created, type:

cd my-app && yarn install

COMMANDS

START: yarn dev

BUILD: yarn build

STORYBOOK: yarn storybook

TEST: yarn test

CREDITS

DoneDeal0

GitHub

View Github