https://github.com/shahzaibkhalid/shaizei-starter-javascript
🚀 — An official starter kit for React-JavaScript applications created with @shaizei/cli.
https://github.com/shahzaibkhalid/shaizei-starter-javascript
react react-boilerplate react-starter-kit reactjs
Last synced: 9 months ago
JSON representation
🚀 — An official starter kit for React-JavaScript applications created with @shaizei/cli.
- Host: GitHub
- URL: https://github.com/shahzaibkhalid/shaizei-starter-javascript
- Owner: shahzaibkhalid
- Created: 2019-03-02T18:54:55.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-02-28T09:56:07.000Z (almost 3 years ago)
- Last Synced: 2025-02-12T21:45:52.568Z (10 months ago)
- Topics: react, react-boilerplate, react-starter-kit, reactjs
- Language: JavaScript
- Homepage:
- Size: 2.05 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
shaizei-starter-kit
An official starter kit for React-JavaScript applications created with @shaizei/cli.
# Commands
Here's a brief summary of the commands that you can run inside the applications
created with `@shaizei/cli`.
Note that these commands are the ones that are available by default, you can extend
the applications in whatever way you want and add many more scripts of your choice.
## Starting Development Server
In order to start the development server, run the following command:
```shell
shaizei develop
```
## Building Production Bundles
In order to generate an optimized production bundle of your application, run the
following command:
```shell
shaizei build
```
## Running Linting
In order to run linting on all the files in `src/` directory, run the following
command:
```shell
shaizei lint
```
## Fixing Common Linting Errors
In order to fix common linting errors, run the following command:
```shell
shaizei lint-fix
```
## Analyzing Production Bundles
In order to analyze the production bundles, run the following command:
```shell
shaizei analyze
```
## Serving Production Bundles
In order to serve the production bundle locally, run the following command:
```shell
shaizei serve
```
## Running Prettier
In order to run Prettier throughout the codebase and to find the potential violations
of Prettier rules, run the following command:
```shell
shaizei prettier
```
## Fixing Prettier Issues
In order to fix Prettier formatting issues from command-line, run the following
command:
```shell
shaizei prettier-fix
```
## Find Potential Conflicts between Prettier & ESLint
ESLint can also do the part of job that Prettier is doing, in order to find if there
are any issues among ESLint & Prettier integration, run the following command:
```shell
shaizei eslint-prettier-integration
```
# What is `shaizei`? 🤔
`shaizei` is a toolkit for building & maintaining futuristic React apps.
Read more about it by checking the [official repository](https://github.com/shahzaibkhalid/shaizei).