WARNING: This documentation is for an old version of mithril! Please see the current docs for more accurate info.

Optimizing Performance

There's a number of ways to improve Mithril performance for the rare cases where pages are too complex for their own good.

First and foremost, you should think hard about whether performance optimization is truly your last resort. By nature, optimizing performance make aggressive assumptions that can break in edge cases and it yields difficult to understand code. As a rule of thumb, you should never implement performance optimizations if another solution is available.

For example, if you are building a table with thousands of rows and finding that the template is slow, you should first consider making the table show less items, because from a user experience perspective, no one is realistically going to scan through thousands of records. The effort to make the table paginated, searchable or filterable can improve the user experience in addition to solving the performance problem both on redraws and on initial page load.


Compiling templates

You can optionally pre-compile templates that use m() by using mithril-objectify. This step isn't required in order to use Mithril, but it's an easy way to squeeze a little bit more performance out of an application, without the need for code changes.

Compiling a template transforms the nested function calls of a template into a raw virtual DOM tree (which is merely a collection of native Javascript objects that is ready to be rendered via m.render). This means that compiled templates don't need to parse the string in m("div#foo") and they don't incur the cost of the function call.

It's worth mentioning that Mithril has built-in mechanisms elsewhere that take care of real bottlenecks like browser repaint management and DOM updating. This optional compilation tool is merely "icing on the cake" that speeds up the Javascript run-time of templates (which is already fast, even without compilation - see the performance section on the homepage).

The tool takes regular Mithril templates like the one below:

var view = function() {
    return m("a", {href: "http://google.com"}, "test");
}

It pre-processes the m() call and replaces it with its output:

var view = function() {
    return {tag: "a", attrs: {href: "http://google.com"}, children: "test"};
}

Note that compiled templates are meant to be generated by an automated build process and are not meant to be human editable.


Installing

Mithril-objectify requires a NodeJS environment. To install it, go to its website and use the installer provided.

To install mithril-objectify, NodeJS provides a command-line package manager tool. In a command line, type:

npm install -g mithril-objectify

Then, to compile a file, type:

mithril-objectify ./input-filename.js ./output-filename.js