Giter VIP home page Giter VIP logo

cl-spidermonkey's Introduction

CL-SpiderMonkey: Common Lisp interface to Javascript

A Common Lisp library for interacting with Javascript through the SpiderMonkey library

Introduction

cl-spidermonkey provides a Javascript runtime environment inside of Common Lisp by embedding a widely-used and tested Javascript engine: Mozilla's SpiderMonkey.

With full access to Javascript from Common Lisp, it becomes easier to test Javascript libraries in the same breath as normal testing. It also allows a Lisp REPL to be used as a Javascript REPL, and for many other combinations of lisp and JS.

Installation

Before you do anything you need the git repostiory.

git clone git://github.com/gonzojive/cl-spidermonkey.git

First you need to compile Spidermonkey. It's not that bad! Just cd into the vendor directory and then run the install script:

cd vendor
sh install-spidermonkey.sh

That will download and install SpiderMonkey, and set up all the paths properly.

Now you should be able to load the library in lisp:

REPL> (asdf:operate 'asdf:load-op :cl-spidermonkey)

To make sure everything's peachy, run the test suite:

REPL> (asdf:operate 'asdf:load-op :cl-spidermonkey-tests)
REPL> (spidermonkey-tests:spidermonkey-tests)

Usage

Right now there are only two exported symbols, so things are pretty easy:

REPL> (sm::with-js-context (context)
       (sm:evaluate-js "10 * 24;"))
240

Note that you can only get doubles, ints, strings, voids (undefined), nulls, and boolean values back from EVALUATE-JS. Any other object will come back as a pointer to a JS_Object whichs needs further attention from the bindings. If you are so inclined, lookat the src/spidermonkey-bindings.lisp file for more info on how to deal with native Spidermonkey objects.

cl-spidermonkey's People

Contributors

gonzojive avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.