[READ-ONLY] Mirror of https://github.com/Schniz/functional-programming-talk-examples. stuff i coded for the functional talk
0

Configure Feed

Select the types of activity you want to include in your feed.

add run instructions

Gal Schlezinger (Dec 8, 2015, 12:13 AM +0200) 2edda320 4738b587

+12 -2
+7
README.md
··· 1 1 Code i wrote/livecoded for my [Fun.ctional programming](https://speakerdeck.com/schniz/fun-dot-ctional-programming) talk 2 + 3 + ## Running 4 + ```bash 5 + npm install 6 + npm run build 7 + npm start 8 + ```
+5 -2
package.json
··· 4 4 "description": "", 5 5 "main": "main.js", 6 6 "scripts": { 7 - "test": "echo \"Error: no test specified\" && exit 1" 7 + "test": "echo \"Error: no test specified\" && exit 1", 8 + "build": "babel -o script/main.js main.js -s inline", 9 + "start": "http-server" 8 10 }, 9 11 "author": "", 10 12 "license": "ISC", 11 13 "dependencies": { 12 14 "babel-cli": "^6.2.0", 13 15 "babel-preset-es2015": "^6.1.18", 14 - "babel-preset-stage-0": "^6.1.18" 16 + "babel-preset-stage-0": "^6.1.18", 17 + "http-server": "^0.8.5" 15 18 } 16 19 }