Become a member
Sign in
Kyle Henderson
Kyle Henderson

Kyle Henderson

3 Following
34 Followers
  • Profile
  • Highlights

Latest

Kyle Henderson
Kyle Henderson
Feb 21, 2018 · 1 min read

Adding refmt on commit

I am writing this mostly for self-documentation but if someone else finds it useful, awesome!

Why?

Refmt works great to style your code around your current editor setup but because it runs based (at least in my default) on the width…

50

Kyle Henderson
Kyle Henderson
Feb 12, 2018 · 4 min read

Dead Simple Server-Rendering with ReasonReact

Thanks to the bindings for libraries like express and react making a…

336

Kyle Henderson
Kyle Henderson
Jan 28, 2018 · 3 min read

Binding a library in ReasonML

ReasonML provides a strong type system and tooling but currently does not have the library support to do everything you might want. This is where bindings come in, they allow for a typed interface between a library and your code.

218

Kyle Henderson
Kyle Henderson
Jan 21, 2018 · 4 min read

Creating global state in ReasonReact

ReasonReact by default provides a solution for managing stateful components by using reducer components. Reducer components are wonderful for managing small segments of state throughout your system but run into some serious issues in a larger application. Having a…

263

3 responses
Kyle Henderson
Kyle Henderson
Jan 14, 2018 · 3 min read

Routing in ReasonReact

Routing used to require using an external library like bs-director or bs-react-router, but with ReasonReact v3.0.1, you now have a built-in router. :D

The new router is bare bones and that is intentional. The public interface only provides three functions push…

342

2 responses