(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| { | |
| "presets": ["es2015"], | |
| "plugins": ["transform-runtime"] | |
| } |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| var assert = require('assert'); | |
| var spawn = require('child_process').spawn; | |
| module.exports = function Command(command, npmModule) { | |
| return function(argv, options, loader) { | |
| var options = { | |
| env: process.env, | |
| stdio: 'inherit', | |
| windowsVerbatimArguments: true |
| # | |
| # Wide-open CORS config for nginx | |
| # | |
| location / { | |
| if ($request_method = 'OPTIONS') { | |
| add_header 'Access-Control-Allow-Origin' '*'; | |
| # |