diff options
author | Navigare <navigare@gmx.com> | 2015-10-28 22:30:16 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-10-28 22:38:01 +0700 |
commit | f9d05a005b3892e6b172f78837f51cf2d5bc97c7 (patch) | |
tree | 9ad4ed5bb6444af923f0a0ac942db89e6b2e5be2 /libraries/mujs/README | |
parent | 841cccd68939e3f6be8a432bcbbd5f843daeb8ce (diff) | |
download | slackbuilds-f9d05a005b3892e6b172f78837f51cf2d5bc97c7.tar.gz |
libraries/mujs: Added (javascript interpreter).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/mujs/README')
-rw-r--r-- | libraries/mujs/README | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libraries/mujs/README b/libraries/mujs/README new file mode 100644 index 0000000000..6e9a9606c0 --- /dev/null +++ b/libraries/mujs/README @@ -0,0 +1,11 @@ +MuJS is a lightweight Javascript interpreter designed for embedding in other +software to extend them with scripting capabilities. It is written in portable +C and implements ECMAScript as specified by ECMA-262. + +Why? Because V8, SpiderMonkey and JavaScriptCore are all too big and complex. +MuJS's focus is on small size, correctness and simplicity. + +The interface for binding with native code is designed to be as simple as +possible to use, and is similar to Lua. There is no need for interacting with +byzantine C++ template mechanisms, or worry about marking and unmarking garbage +collection roots, or wrestle with obscure build systems. |