Iterators,generators andarray comprehensions; The similarities between JavaScript and Python continue to increase over time and I for one could not be more excited. Today we’re going to talk about the next Pythonic proposal for ECMAScript —Decorators, by Yehuda Katz.
Update 07/29/17: Decorators are advancing at TC39. The latest work on them can be found in theproposals repo. Severalnew examples are also now up.
Update 10/02/18: A command line utility to upgrade your scripts from the legacy decorators proposal to the new one isnow available.
What the heck are decorators anyway? Well, in Python, decorators provide a very simple syntax for callinghigher-order functions. A Python decorator is a function that takes another function, extending the behavior of the latter function without explicitly modifying it. Thesimplest decorator in Python could look like this:
That thing at the very top (`@mydecorator`) is a decorator and isn’t going to look that different in ES2016 (ES7), so pay attention! :).
`@` indicates to the parser that we’re using a decorator whilemydecorator references a function by that name. Our decorator takes an argument (the function being decorated) and returns the same function with added functionality.
Decorators are helpful for anything you want to transparently wrap with extra functionality. These include memoization, enforcing access control and authentication, instrumentation and timing functions, logging, rate-limiting, and the list goes on.
In ES5, implementing imperative decorators (as pure functions) is quite trivial. In ES2015 (previously ES6), while classes support extension, we need something better when we have multiple classes that need to share a single piece of functionality; something with a better method of distribution.
Yehuda’s decorators proposal seeks to enable annotating and modifying JavaScript classes, properties and object literals at design time while keeping a syntax that’s declarative.
Let’s look at some ES2016 decorators in action!
So remember what we learned from Python. An ES2016 decorator is an expression which returns function and can take a target, name and property descriptor as arguments. You apply it by prefixing the decorator with an `@` character and placing this at the very top of what you are trying to decorate. Decorators can be defined for either a class or property.
Let’s take a look at a basic Cat class:
Evaluating this class results in installing the meow function onto `Cat.prototype`, roughly like this:
Imagine we want to mark a property or method name as not being writable. A decorator precedes the syntax that defines a property. We could thus define a `@readonly` decorator for it as follows:
and add it to our meow property as follows:
A decorator is just an expression that will be evaluated and has to return a function. This is why `@readonly` and `@something(parameter)` can both work.
Now, before installing the descriptor onto `Cat.prototype`, the engine first invokes the decorator:
Effectively, this results in meow now being read only. We can verify this behaviour as follows:
Bees-knees, right? We’re going to look at decorating classes (rather than just properties) in just a minute, but let’s talk about libraries for a sec. Despite its youth, libraries of 2016 decorators are already beginning to appear includinghttps://github.com/jayphelps/core-decorators.js by Jay Phelps.
Similar to our attempt at readonly props above, it includes its own implementation for `@readonly`, just an import away:
It also includes other decorator utilities such as `@deprecate`, for those times when an API requires hints that methods are likely to change:
Calls console.warn() with a deprecation message. Provide a custom message to override the default one. You can also provide an options hash with a url, for further reading.
Next let’s look at decorating classes. In this case, per the proposed specification, a decorator takes the target constructor. For a fictional `MySuperHero` class, we can define a simple decorator for it as follows using a `@superhero` decoration:
This can be expanded further, enabling us to supply arguments for defining our decorator function as a factory:
ES2016 Decorators work on property descriptors and classes. They automatically get passed property names and the target object, as we’ll soon cover. Having access to the descriptor allows a decorator to do things like changing a property to use a getter, enabling behaviour that would otherwise be cumbersome such as automatically binding methods to the current instance on first access of a property.
I’ve thoroughly enjoyed reading Reg Braithwaite’s recent article onES2016 Decorators as mixins and the precursorFunctional Mixins. Reg proposed a helper that mixes behaviour into any target (class prototype or standalone) and went on to describe a version that was class specific. The functional mixin that mixes instance behaviour into a class’s prototype looked like this:
Great. We can now define some mixins and attempt to decorate a class using them. Let’s imagine we have a simple `ComicBookCharacter` class:
This may well be the world’s most boring character, but we can define some mixins which would provide behaviours granting `SuperPowers` and a `UtilityBelt`. Let’s do this using Reg’s mixin helper:
With this behind us, we can now use the `@` syntax with the names of our mixin functions to decorate the `ComicBookCharacter` with our desired behaviour. Note how we’re prefixing the class with multiple decorator statements:
Now, let’s use what we’ve defined to craft a Batman character.
These decorators for classes are relatively compact and I could see myself using them as an alternative to function invocation or as helpers for higher-order components.
Note: @WebReflection has some alternatives takes on the mixin pattern used in this section which you can find in the commentshere.
Decorators (at the time of writing) are still but a proposal. They haven’t yet been approved. That said, thankfully Babel supports transpilation of the syntax in an experimental mode, so most of the samples from this post can be tried out with it directly.
If using the Babel CLI, you can opt-in to Decorators as follows:
$ babel --optional es7.decorators
or alternatively, you can switch on support using a transformer:
There’s even anonline Babel REPL; enable decorators by hitting the “Experimental” checkbox. Try it out!
Paul Lewis, who luckily enough I sit next to, has beenexperimenting with decorators as a means for rescheduling code that reads and writes to the DOM. It borrows ideas from Wilson Page’s FastDOM, but provides an otherwise small API surface. Paul’s read/write decorators can also warn you via the console if you’re calling methods or properties during a @write (or change the DOM during @read) that trigger layout.
Below is a sample from Paul’s experiment, where attempting to mutate the DOM inside a @read causes a warning to be thrown to the console:
In the short term, ES2016 decorators are useful for declarative decoration and annotations, type checking and working around the challenges of applying decorators to ES2015 classes. In the long term, they could prove very useful for static analysis (which could give way to tools for compile-time type checking or autocompletion).
They aren’t that different from decorators in classic OOP, where the pattern allows an object to be decorated with behaviour, either statically or dynamically without impacting objects from the same class. I think they’re a neat addition. The semantics for decorators on class properties are still in flux, however keep an eye on Yehuda’s repo for updates.
Library authors are currently discussing where Decorators may replace mixins and there are certainly ways in which they could be used for higher-order components inReact.
I’m personally excited to see an increase in experimentation around their use and hope you’ll give them a try using Babel, identify repurposeable decorators and maybe you’ll even share your work like Paul did :)
With thanks toJay Phelps,Sebastian McKenzie,Paul Lewis andSurma for reviewing this article and providing detailed feedback ❤
P.S: Unfortunately, Medium does not yet supportsyntax highlighting. If you’re after code snippets or an accessible version of this post, see my originalgist.
Engineering and technology articles for developers, written and curated by Googlers. The views expressed are those of the authors and don't necessarily reflect those of Google.