- TL;DR:
brew install go - Install Go
Start in this order:
brew install goStart in this order:
| jest@16.0.0 | |
| babel@5.8.23 | |
| npm@3.9.5 | |
| node v4.4.3 |
| var babel = require('babel'); | |
| module.exports = { | |
| process: function(src, filename) { | |
| if (filename.indexOf('node_modules') === -1 && babel.canCompile(filename)) { | |
| return babel.transform(src, {filename: filename}).code; | |
| } | |
| return src; | |
| } | |
| }; |
| bash-completion binutils cscope erlang gdbm gifsicle git jpeg jq libevent libpng libssh libtiff macvim msgpack oniguruma openssl pcre python rabbitmq readline sqlite the_silver_searcher tmate tree unixodbc vim wget wxmac xz |
| onFooterClicked: (props, propName, componentName) => { | |
| if (props.isFooterVisible) { | |
| return React.PropTypes.func.isRequired(props, propName, componentName, 'prop'); | |
| } | |
| return React.PropTypes.func(props, propName, componentName, 'prop'); | |
| } |
| import HTML5Backend from 'react-dnd-html5-backend/lib/HTML5Backend'; | |
| class NonNativeHTML5Backend extends HTML5Backend { | |
| constructor(manager) { | |
| super(manager); | |
| // Rebind our overwritten methods | |
| this.handleTopDrop = this.handleTopDrop.bind(this); | |
| this.handleTopDropCapture = this.handleTopDropCapture.bind(this); | |
| this.handleTopDragOver = this.handleTopDragOver.bind(this); |
| { | |
| "extends": "eslint:recommended", | |
| "parser": "babel-eslint", | |
| "plugins": [ | |
| "react", | |
| "sorting" | |
| ], | |
| "ecmaFeatures": { | |
| "arrowFunctions": true, | |
| "blockBindings": true, |
| $ npm init | |
| This utility will walk you through creating a package.json file. | |
| It only covers the most common items, and tries to guess sensible defaults. | |
| See `npm help json` for definitive documentation on these fields | |
| and exactly what they do. | |
| Use `npm install <pkg> --save` afterwards to install a package and | |
| save it as a dependency in the package.json file. |
| go get github.com/NickPresta/go-wave-workshop | |
| # It should return nothing is successful | |
| # If it doesn't work, please HipChat me the output of `go env` | |
| # and the error from the go get above |