Mastodon

Ash

Toolchain #1

#Toolchain

Toolchain is a regular update about tools and techniques I have been playing around with; for the sake of my sanity as much as anything.

React

I'd been eyeing Facebook's React for some time, and recently tried it out. React prescribes that you place the markup for your views within your controller—known as a React component—in the form of functions that create DOM nodes. Kind of a weird proposition for me at first, but one that makes a lot of sense and I appreciate the benefits of (many of React's features are the result of implementing a virtual DOM, enabled by writing markup in this way). React supports an XHTML-like syntax called JSX that allows you to write your views in a more familiar way, and compiles to the aforementioned DOM functions.

React is really worth checking out, especially at a time when web components are emerging as an important concept. I like React's take on web components, and they are more easily rendered on the server because they don't depend on the DOM, unlike the W3C implementation.

React is not an implementation of W3C web components, just a similar concept.

React Router

React Router is a handy React component that allows you to route to components.

Promises (with Bluebird)

Flow control in JavaScript is a somewhat confusing topic, with various approaches often coexisting in a project's dependencies. Promises seem to be becoming a popular choice, with a place solidified in the ES6 spec (sadly the various promise implementations are yet another source of confusion). I've been using the Bluebird library.

Enums in JavaScript

My previous experience with enums stretched as far as using them in MySQL databases to limit a column to a set of predefined values. For one reason or another, perhaps dabbling with Apple's Swift language, I recently became aware of further applications for the enum, and I began to spot problems that might benefit from its application.

For example, I've experienced occasions where a piece of state is almost binary. A client is not just connected or disconnected. It might be connecting.

Without an enum, you might write something like this and assume the status is connecting if it is not true or false.

var connected
 
if (typeof connected === 'undefined') {
  // Connecting
}
 
if (connected) {
  // Connected
}
 
if (!connected) {
  // Disconnected
}

This lacks clarity and is limited to three states. You could add strings that describe various states, but that means replicating strings in various places, and becoming susceptible to the kind of errors that using variables prevents (such as typos).

With an enum-style construction:

var states = {
  DISCONNECTED: 0,
  CONNECTING: 1,
  CONNECTED: 2,
}
 
var connection = states.CONNECTING
 
if (connection === states.CONNECTING) {
  // Connecting
}
 
if (connection === states.CONNECTED) {
  // Connected
}
 
if (connection === states.DISCONNECTED) {
  // Disconnected
}

Clearer and less error prone.

There are also benefits to having numeric values associated with state. For example, in the code above, we know that the client is not connected if connection < states.CONNECTED. David Strauß explores this on his blog.

Partial application with function.prototype.bind()

This is not new at all, but something I've been playing around with more widely recently. I will attempt to demonstrate with an example:

function findPeople(name, hobbies) {}
var findPeopleNamedBruce = findPeople.bind(undefined, 'bruce')

Pascal Hartig explains it better than I can.

Partial application is a nice halfway step to currying, which requires an implementation on top of JavaScript. Next on my todo list to dabble with.

David dependency manager

npm does a great job of dependency management, automatically fetching you the latest appropriate version of a dependency based on the semver range specified in your package.json. But I wanna know about new versions, even if they are breaking! David makes this easy; run it in the directory of your project and it'll report any dependencies that have updates beyond your semver range. Also available as a badge, if you're into that kind of thing.

#npm#React#JavaScript