VNDB fork of mithril.js
Find a file
2016-12-02 23:08:10 -05:00
api fix #1404 2016-12-01 01:45:07 -05:00
bundler lint 2016-12-02 22:03:23 -05:00
docs add example of how jsx syntax looks 2016-12-02 23:08:10 -05:00
examples use animation best practices in dbmon 2016-12-02 20:44:03 -05:00
module lint 2016-09-23 22:49:20 -04:00
ospec bump ospec version 2016-11-15 10:02:25 -05:00
promise expose promise polyfill in a way that won't need code migration later 2016-11-16 21:15:23 -05:00
querystring fix test 2016-10-18 18:07:01 -04:00
render beef up tests 2016-12-02 21:24:12 -05:00
request lint 2016-12-02 22:03:23 -05:00
router lint 2016-12-02 22:03:23 -05:00
stream simplify array operators in stream 2016-11-20 14:13:35 +02:00
test-utils allow dom level 1 events to be removed #1385 2016-11-04 12:33:36 -04:00
tests change m.request return value from stream to promise 2016-11-13 22:44:22 -05:00
util simplify streams, lint docs 2016-11-15 23:13:38 -05:00
.deploy.enc Set up repo for travis commits (#1210) 2016-08-04 09:58:28 -07:00
.editorconfig Add editorconfig, resolve differences 2016-06-18 03:22:12 -04:00
.eslintignore lint 2016-11-15 23:20:22 -05:00
.eslintrc.js lint 2016-09-23 22:49:20 -04:00
.gitattributes change line endings, step 1 2016-10-26 15:23:19 -04:00
.gitignore remove ambiguity in oncreate hook docs 2016-11-01 23:30:29 -04:00
.travis.yml Travis should lint & bundle before every build (#1441) 2016-11-30 11:51:10 -08:00
browser.js unbreak bundler 2016-08-03 00:01:17 -04:00
hyperscript.js improved bundler, handle width/height atts 2016-09-23 10:31:33 -04:00
index.js isolate render 2016-12-02 13:22:37 -05:00
mithril.js Bundled output for commit 1fe4a08e71 [skip ci] 2016-12-03 03:04:23 +00:00
mithril.min.js Bundled output for commit 0dce0e7911 [skip ci] 2016-12-03 02:20:48 +00:00
mount.js fix #1404 2016-12-01 01:45:07 -05:00
package.json update docs, add descriptions for api methods 2016-12-02 17:51:07 -05:00
README.md Bundled output for commit 0dce0e7911 [skip ci] 2016-12-03 02:20:48 +00:00
redraw.js fix #1404 2016-12-01 01:45:07 -05:00
render.js rename routeresolver methods to {onmatch,view} 2016-08-17 00:10:47 -04:00
request.js change m.request return value from stream to promise 2016-11-13 22:44:22 -05:00
route.js fix #1404 2016-12-01 01:45:07 -05:00
stream.js simplify streams, lint docs 2016-11-15 23:13:38 -05:00

Mithril.js - A framework for building brilliant applications

Installation | API | Examples | Migration Guide

Note: This branch is the upcoming version 1.0. It's a rewrite from the ground up and it's not backwards compatible with Mithril 0.2.x. You can find preliminary documentation here and migration guide here

This rewrite aims to fix longstanding API design issues, significantly improve performance, and clean up the codebase.

Early Preview

You can install this via NPM using this command:

npm install mithril@rewrite

Examples run out of the box. Just open the HTML files.

Status

The code is fairly stable and I'm using it in production, but there may be bugs still lurking.

Some examples of usage can be found in the examples folder. ThreadItJS has the largest API surface coverage.

Partial documentation can be found in the /docs directory

Performance

Mithril's virtual DOM engine is around 500 lines of well organized code and it implements a modern search space reduction diff algorithm and a DOM recycling mechanism, which translate to top-of-class performance. See the dbmon implementation (for comparison, here are dbmon implementations for React v15.3.2, Angular v2.0.0-beta.17 and Vue 2. All implementations are naive (i.e. apples-to-apples, no optimizations)

Robustness

There are over 4000 assertions in the test suite, and tests cover even difficult-to-test things like location.href, element.innerHTML and XMLHttpRequest usage.

Modularity

Despite the huge improvements in performance and modularity, the new codebase is smaller than v0.2.x, currently clocking at 7.46 KB min+gzip

In addition, Mithril is now completely modular: you can import only the modules that you need and easily integrate 3rd party modules if you wish to use a different library for routing, ajax, and even rendering