-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.md.rx
50 lines (32 loc) · 1.23 KB
/
README.md.rx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# vite-react-ts-starter
This is the template I use to get up and running with a new React App in 2023.
It was created with `Vite` with the following command:
=> npm create vite@latest vite-react-ts-starter -- --template react-ts
I am using {{ gh.link("iaseth/readmix", "readmix") }} for generating this README.
You can view the source file [here](https://github.com/iaseth/vite-react-ts-starter/blob/master/README.md.rx).
## Table of contents
{{ tableOfContents(doc) }}
## Getting Started
* Clone the repository and `cd` into it:
=> git clone https://github.com/iaseth/vite-react-ts-starter.git
=> cd vite-react-ts-starter
* Delete the `.git` directory and do `git init` for a fresh start:
=> rm -r .git
=> git init
* Install all dependencies with the following command:
=> npm install
* Now you can run the dev server with:
=> npm run dev
This will start running a development server at [http://localhost:5173/](http://localhost:5173/).
* To build the project:
=> npm run build
This will build your project into `dist` directory.
## Package details
{{ npm.packageDetails() }}
## Dependencies
{{ npm.dependencyTable() }}
## Dev dependencies
{{ npm.devDependencyTable() }}
## License
{{ "LICENSE.md" | File }}
{{ giveCredit() }}