| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <!DOCTYPE html>
- <html>
- <head>
- <link href="style.css" rel="stylesheet">
- <title>MuJS</title>
- </head>
- <body>
- <header>
- <h1>MuJS</h1>
- </header>
- <nav>
- <a href="introduction.html">Introduction</a>
- <a href="reference.html">Reference</a>
- <a href="examples.html">Examples</a>
- <a href="license.html">License</a>
- <a href="http://git.ghostscript.com/?p=mujs.git;a=summary">Source</a>
- <a href="https://bugs.ghostscript.com/">Bugs</a>
- </nav>
- <article>
- <p>
- MuJS is a lightweight Javascript interpreter designed for embedding in other
- software to extend them with scripting capabilities.
- <p>
- MuJS was designed with a focus on small size, correctness, and simplicity.
- It is written in portable C and implements ECMAScript as specified by ECMA-262.
- The interface for binding with native code is designed to be as simple as
- possible to use, and is very similar to Lua. There is no need to interact with
- byzantine C++ template mechanisms, or worry about marking and unmarking garbage
- collection roots, or wrestle with obscure build systems.
- <p>
- MuJS is developed and maintained by Artifex Software.
- It was originally developed for use with the MuPDF viewer, but is designed to be useful as an independent component.
- <p>
- The primary meeting place for the MuJS community is the
- <a href="http://webchat.freenode.net/?channels=mupdf">#mupdf</a>
- IRC channel on freenode.
- <p>
- MuJS is free open source software distributed under the
- <a href="https://opensource.org/licenses/ISC">ISC license</a>.
- </article>
- <footer>
- <a href="http://artifex.com"><img src="artifex-logo.png" align="right"></a>
- Copyright © 2013-2017 Artifex Software Inc.
- </footer>
- </body>
- </html>
|