mithril
Version:
A framework for building brilliant applications
107 lines (105 loc) • 5.21 kB
HTML
<head>
<meta charset=UTF-8>
<title> Credits - Mithril.js</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel=stylesheet>
<link href=style.css rel=stylesheet>
<link rel=icon type=image/png sizes=32x32 href=favicon.png>
<meta name=viewport content="width=device-width,initial-scale=1">
</head>
<body>
<header>
<section>
<a class=hamburger href=javascript:;>≡</a>
<h1><img src=logo.svg> Mithril <small>2.0.3</small></h1>
<nav>
<a href=index.html>Guide</a>
<a href=api.html>API</a>
<a href=https://gitter.im/MithrilJS/mithril.js>Chat</a>
<a href=https://github.com/MithrilJS/mithril.js>GitHub</a>
</nav>
</section>
</header>
<main>
<section>
<h1 id=credits><a href=#credits>Credits</a></h1>
<ul>
<li>Getting Started<ul>
<li><a href=index.html>Introduction</a></li>
<li><a href=installation.html>Installation</a></li>
<li><a href=simple-application.html>Tutorial</a></li>
<li><a href=learning-mithril.html>Learning Resources</a></li>
<li><a href=support.html>Getting Help</a></li>
</ul>
</li>
<li>Resources<ul>
<li><a href=jsx.html>JSX</a></li>
<li><a href=es6.html>ES6+ on legacy browsers</a></li>
<li><a href=animation.html>Animation</a></li>
<li><a href=testing.html>Testing</a></li>
<li><a href=examples.html>Examples</a></li>
<li><a href=integrating-libs.html>3rd Party Integration</a></li>
<li><a href=paths.html>Path Handling</a></li>
</ul>
</li>
<li>Key concepts<ul>
<li><a href=vnodes.html>Vnodes</a></li>
<li><a href=components.html>Components</a></li>
<li><a href=lifecycle-methods.html>Lifecycle methods</a></li>
<li><a href=keys.html>Keys</a></li>
<li><a href=autoredraw.html>Autoredraw system</a></li>
</ul>
</li>
<li>Social<ul>
<li><a href=https://github.com/MithrilJS/mithril.js/wiki/JOBS>Mithril Jobs</a></li>
<li><a href=contributing.html>How to contribute</a></li>
<li><strong><a href=credits.html>Credits</a></strong></li>
<li><a href=code-of-conduct.html>Code of Conduct</a></li>
</ul>
</li>
<li>Misc<ul>
<li><a href=framework-comparison.html>Framework comparison</a></li>
<li><a href=change-log.html>Change log/Migration</a></li>
<li><a href=https://mithril.js.org/archive/v1.1.6/ >v1 Documentation</a></li>
<li><a href=https://mithril.js.org/archive/v0.2.5/ >v0.2 Documentation</a></li>
</ul>
</li>
</ul>
<p>Mithril was originally written by Leo Horie, but it is where it is today thanks to the hard work and great ideas of many people.</p>
<p>Special thanks to:</p>
<ul>
<li>Pat Cavit, who exposed most of the public API for Mithril 1.0, brought in test coverage and automated the publishing process</li>
<li>Isiah Meadows, who brought in linting, modernized the test suite and has been a strong voice in design discussions</li>
<li>Zoli Kahan, who replaced the original Promise implementation with one that actually worked properly</li>
<li>Alec Embke, who single-handedly wrote the JSON-P implementation</li>
<li>Barney Carroll, who suggested many great ideas and relentlessly pushed Mithril to the limit to uncover design issues prior to Mithril 1.0</li>
<li>Dominic Gannaway, who offered insanely meticulous technical insight into rendering performance</li>
<li>Boris Letocha, whose search space reduction algorithm is the basis for Mithril's virtual DOM engine</li>
<li>Joel Richard, whose monomorphic virtual DOM structure is the basis for Mithril's vnode implementation</li>
<li>Simon Friis Vindum, whose open source work was an inspiration to many design decisions for Mithril 1.0</li>
<li>Boris Kaul, for his awesome work on the benchmarking tools used to develop Mithril</li>
<li>Leon Sorokin, for writing a DOM instrumentation tool that helped improve performance in Mithril 1.0</li>
<li>Jordan Walke, whose work on React was prior art to the implementation of keys in Mithril</li>
<li>Pierre-Yves Gérardy, who consistently makes high quality contributions</li>
<li>Gyandeep Singh, who contributed significant IE performance improvements</li>
</ul>
<p>Other people who also deserve recognition:</p>
<ul>
<li>Arthur Clemens - creator of <a href=https://github.com/ArthurClemens/Polythene>Polythene</a> and the <a href=https://arthurclemens.github.io/mithril-template-converter/index.html>HTML-to-Mithril converter</a></li>
<li>Stephan Hoyer - creator of <a href=https://github.com/StephanHoyer/mithril-node-render>mithril-node-render</a>, <a href=https://github.com/StephanHoyer/mithril-query>mithril-query</a> and <a href=https://github.com/StephanHoyer/mithril-source-hint>mithril-source-hint</a></li>
<li>the countless people who have reported and fixed bugs, participated in discussions, and helped promote Mithril</li>
</ul>
<hr>
<small>License: MIT. © Leo Horie.</small>
</section>
</main>
<script src=https://cdnjs.cloudflare.com/ajax/libs/prism/1.6.0/prism.min.js defer></script>
<script src=https://cdnjs.cloudflare.com/ajax/libs/prism/1.6.0/components/prism-jsx.min.js defer></script>
<script src=https://unpkg.com/mithril@2.0.3/mithril.js async></script>
<script>
document.querySelector(".hamburger").onclick = function() {
document.body.className = document.body.className === "navigating" ? "" : "navigating"
document.querySelector("h1 + ul").onclick = function() {
document.body.className = ''
}
}
</script>