Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/azakharo/anti-mat
https://github.com/azakharo/anti-mat
Last synced: about 21 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/azakharo/anti-mat
- Owner: azakharo
- Created: 2023-11-23T08:33:20.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2023-11-23T13:08:34.000Z (12 months ago)
- Last Synced: 2023-11-24T12:24:41.994Z (12 months ago)
- Language: TypeScript
- Homepage: https://anti-mat.vercel.app
- Size: 168 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React.js Typescript application starter which uses Vite
Usage: create fast prototypes, solve test tasks.
## Features:
* You can write Typescript or Javascript code with the latest JS features.
* Babel is used for Typescript transpilation. Typescript compiler is used for the type checking only.
* ESLint for linting Typescript and Javascript code.
* Auto code formatting with Prettier.
* Dev server with hot reloading
* Production optimized build
* Client-side routing (react-router v6)
* Material UI toolkit (v5)
* "api" sub-dir contains code for working with a backend. Axios is used.
* Login and Main page skeletons. Dummy implementation for handling the authentication has already been added.
* Jest already configured. Tests can be written in Typescript.## Quick start
First install dependencies:
```sh
npm install
```To run in the development mode with hot module reloading:
```sh
npm start
```That command opens http://localhost:5173 page in your browser.
To create a production build:
```sh
npm run build
```
See "dist" folder for results.