https://github.com/creationix/luvmonkey
Spidermonkey shell with libuv bindings built-in.
https://github.com/creationix/luvmonkey
Last synced: about 1 year ago
JSON representation
Spidermonkey shell with libuv bindings built-in.
- Host: GitHub
- URL: https://github.com/creationix/luvmonkey
- Owner: creationix
- Created: 2012-02-22T21:49:02.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2012-05-10T20:37:37.000Z (about 14 years ago)
- Last Synced: 2024-10-19T04:20:35.275Z (over 1 year ago)
- Language: C
- Homepage:
- Size: 427 KB
- Stars: 39
- Watchers: 4
- Forks: 6
- Open Issues: 2
-
Metadata Files:
- Readme: README.markdown
Awesome Lists containing this project
README
This project is an effort to create a custom SpiderMonkey runtime that has libuv
built-in. This will give it very node.js-like semantics, but using a different
JavaScript engine.
Currently, the project is very alpha and exploratory.
Come to #luvmonkey on freenode irc to discuss any questions.
## Building
At the moment it's only tested on Ubuntu 10.04, 11.04 and OS X 10.7.
Building luvmonkey is super easy. Simply go to the luvmonkey source tree and
do the normal `./configure && make` dance. Python 2.5 or newer (but *not* 3.x)
is required because we use gyp.
```sh
cd $HOME/luvmonkey
./configure
make -j4 # or however many cores you have
# Test it
./out/Debug/luvmonkey test.js
```