Nicolas Hery
Nicolas Hery
I noticed that a lot of boilerplate in my React components listening to stores is the wiring up in `getInitialState`, `componentDidMount`, `componentWillUnmount`. For example: ``` javascript var AccountPage = React.createClass({...
The handler passed to `Store.addWatch` is a `function(keys, oldState, newState)`. I think that's great, but at first it wasn't obvious how I would optimize React's re-render by using the `keys`....
## Summary Adding type annotations to JavaScript in order to get compile-time guarantees has become popular with tools like [TypeScript](https://www.typescriptlang.org) and [Flow](https://flowtype.org/). Would it be feasible to get the same...
Similar to https://github.com/owickstrom/pandoc-include-code/pull/14, add instructions to use with Hakyll. I also added a few lines on how to build the `README.src.md`. Looks like the Tex distribution I used has slightly...
When a frontend library has a dependency which is supposed to be a "singleton" (ex: jQuery, React), I think the preferred way to go with npm is to use `peerDependencies`...