File tree 1 file changed +9
-10
lines changed
1 file changed +9
-10
lines changed Original file line number Diff line number Diff line change 1
1
# react-typescript-starter
2
- Simple boilerplate to start a react application using typescript .
2
+ Complete setup to start a new React project using Typescript .
3
3
4
4
5
5
## It includes
@@ -17,25 +17,24 @@ Simple boilerplate to start a react application using typescript.
17
17
- Jest for unit testing
18
18
19
19
20
- ## Compatibility
21
- The setup is compiling to ES5 and has a polyfill for the fetch API, it should be compatible cross browsers.
22
-
23
-
24
20
## How to use it
25
21
26
22
Installation (will install typings as well):
27
23
```
28
24
npm install
29
25
```
30
26
31
- Runing development server :
27
+ - Runing development server :
32
28
```
33
- npm run start
29
+ npm start
34
30
```
35
31
36
- For production :
32
+ - Build for production :
37
33
```
38
- npm run build
34
+ npm build
39
35
```
40
36
41
- Then with your http server target the dist folder
37
+ - Run unit tests:
38
+ ```
39
+ npm test
40
+ ```
You can’t perform that action at this time.
0 commit comments