git.fiddlerwoaroof.com
Browse code

Add README.md

Ed Langley authored on 08/05/2019 00:10:46
Showing 3 changed files
... ...
@@ -1,3 +1,4 @@
1 1
 node_modules
2 2
 .cache
3 3
 dist
4
+*~
4 5
new file mode 100644
... ...
@@ -0,0 +1,18 @@
1
+# How this repository was made:
2
+
3
+- `mkdir minimal-react-redux`
4
+- `cd minimal-react-redux`
5
+- `npm init`
6
+- `git init`
7
+- `git commit -m '(root)' --allow-empty`
8
+- `npm install --save-dev parcel-bundler eslint eslint-react eslint-plugin-react babel-eslint prettier`
9
+- `npm install --save react redux react-redux redux-saga prop-types react-dom ramda`
10
+- `mkdir src`
11
+- `npx eslint --init`
12
+
13
+# How to run this:
14
+
15
+- `npm ci`
16
+- `npx parcel index.html`
17
+
18
+http://localhost:1234
... ...
@@ -4,7 +4,7 @@
4 4
   "description": "",
5 5
   "main": "src/index.js",
6 6
   "scripts": {
7
-    "test": "echo \"Error: no test specified\" && exit 1"
7
+    "start": "npx parcel index.html"
8 8
   },
9 9
   "author": "",
10 10
   "license": "ISC",