Socket
Socket
Sign inDemoInstall

brandly-lisp

Package Overview
Dependencies
0
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    brandly-lisp

it's a lisp interpreter


Version published
Maintainers
1
Install size
33.5 kB
Created

Readme

Source

lisp.js

Build Status

with inspiration from @maryrosecook's little lisp interpreter and norvig's lispy

don't use this for anything that matters pls

$ npm install --save brandly-lisp

usage

use it with node

var Lisp = require('brandly-lisp');

var lisp = new Lisp();
console.log(lisp.exec('(+ 2 2)'));
//  => 4

or you can use it in a browser

<script src="dist/lisp.js">
<script>
  var lisp = new Lisp();
  console.log(lisp.exec('(+ 2 2)'));
  //  => 4
</script>

or you can try it out online

or install the cli

development

$ npm install
$ npm test

to build a standalone file for the browser

$ npm run browser

FAQs

Last updated on 13 Apr 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc