Skip to content

Commit 1231c25

Browse files
committed
update readme&gitignore
1 parent e084318 commit 1231c25

2 files changed

Lines changed: 11 additions & 3 deletions

File tree

.gitignore

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
1+
# ignore generated modules/files
12
/node_modules/
23
package-lock.json
3-
.env
44
/coverage/
5-
/public/
5+
/public/
6+
.env
7+
8+
# IDE stuff
9+
.DS_Store
10+
npm-debug.log
11+
.idea

readme.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Basic React Boilerplate
22

3+
Simple minimalistic React boilerplate app, that hopefully can make your development easier
4+
35
## Features
46

57
React v17<br>
@@ -34,4 +36,4 @@ Run `npm run test` to run tests<br>
3436

3537
- Q: Why no Redux?
3638

37-
A: Too much boilercode, hard to maintain and slow to code. Rather use React-Query, which fetches, parses, caches data for you. Or in case if need global storage for your app, React Context will probably do fine , but in huge apps where global state changes frequently - Redux is probably better option
39+
A: Too much boilercode, hard to maintain and slow to code. Rather use React-Query, which fetches, parses, caches data for you. Or in case if you need global storage for your app, React Context will probably do fine , but in huge apps where global state changes frequently - Redux is probably better option

0 commit comments

Comments
 (0)