• Stars
    star
    157
  • Rank 238,399 (Top 5 %)
  • Language
    JavaScript
  • Created over 13 years ago
  • Updated over 6 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Lisp with fibers for Node.js

#Β Fargo

Try it out at http://fargo.jcoglan.com

Fargo is a programming language that runs on Node.js. It's designed to ease asynchronous functional programming by providing features missing in JavaScript, namely tail recursion and some form of continuations. It is still an experiment and a toy.

It is loosely based on Scheme, in that I'm using Scheme's function names where appropriate. It is unlikely to become a complete Scheme implementation; at this stage it is an extremely minimal language that you can use where JavaScript is not sufficiently expressive. The initial version was written in various airport and hotel bars. It is probably slow and full of bugs.

Building Fargo

git clone git://github.com/jcoglan/fargo.git
cd fargo
gem install jake
git submodule update --init --recursive
cd vendor/js.class
jake
cd ../../
jake

node bin/fargo path/to/program.scm

Fibers

The main reason for Fargo's existence at present is to add fibers to the Node environment to make async programming easier. Fibers are a lightweight form of continuations that allow blocks of code to be suspended and resumed by the user. Many Ruby programmers are using fibers to let them write non-blocking code with blocking-style syntax.

In Fargo, fibers look like functions and are callable in the same way. When a fiber is running, you can use the yield function which suspends the fiber and returns the yielded value as the result of the fiber's invokation. Next time you call the fiber, it will resume from the last yield; the value you invoke the fiber with will become the result of the yield expression. Some basic examples:

(define stream (fiber (max)
  (define (loop i)
    (if (< i max)
        (begin
          (yield i)
          (loop (+ i 1)))
        'done))
  (loop 0)))

; This binds 2 to `max` and begins running `stream`. The first `yield` is
; called with 0. The next `yield` produces 1, then the fiber exits with `done`
(puts (stream 2)) ; -> 0
(puts (stream))   ; -> 1
(puts (stream))   ; -> done


(define test (fiber (first)
  (define second (yield (+ first 2)))
  second))

; Binds 10 to `first`, begins the fiber. 12 is yielded
(puts (test 10)) ; -> 12

; The `yield` is replaced with the value 14 and the fiber continues by
; returning the value of `second`
(puts (test 14)) ; -> 14

; The fiber has no more code to run so this produces an error
(puts (test 18))

Fibers can help mask async code with callback-free APIs. Here's an example:

In Node we can make asynchronous HTTP requests. Let's write a function to expose this facility to Fargo; our function will take a URL and a callback function (a Fargo Procedure object, not a JavaScript function) and invoke the callback with the response body after requesting the URL.

// lib-http.js

Fargo.runtime.define('http-get', function(url, callback) {
  var uri    = require('url').parse(url),
      client = require('http').createClient(80, uri.hostname);
  
  var request = client.request('GET', uri.pathname);
  request.addListener('response', function(response) {
    var data = '';
    response.addListener('data', function(c) { data += c });
    response.addListener('end', function() {
      callback.exec(data);
    });
  });
  return request.end();
});

In Fargo, we can wrap this function in some Fiber yield/resume magic to give us a callback-free version of the function. We can then use this function when running within a fiber to simplify our async code.

; http.scm

(load "./lib-http.js")

; This function captures the current fiber and initiates a request. It then
; returns a `yield` as the return value, suspending the fiber. When the
; callback is called, we resume the captured fiber with the response; the
; response is injected at the point of the yield and is returned to the
; caller.
(define (fiber-http-get url)
  (define f (current-fiber))
  (http-get url (lambda (response)
    (f response)))
  (yield))

; We wrap our main program in a fiber so it can be suspended at will
(define program (fiber ()
  (define page (fiber-http-get "http://www.google.com/"))
  (puts page)))

; Begins the main program fiber
(program)

Features

Fargo's syntax is that of Scheme. Booleans are written as #t and #f. Strings are be double-quoted only. Numeric literals are base-10 decimals. Lists are delimited with ( and ). Quoted values are prefixed with '. The null value is the empty list '(). Vectors and characters are currently not implemented.

Fargo implements the following syntax elements from Scheme:

  • define for binding variables and creating functions
  • begin for bundling blocks of code as single expressions
  • if for conditional branching
  • lambda for creating first-class anonymous functions
  • quote for defining immutable lists
  • and and or for boolean logic

The following predicates are included:

  • eq?, eqv?, boolean?, number?, string?, symbol?, pair?, null?, list?, procedure?

Binary numeric operators, which delegate to the JavaScript equivalents:

  • +, -, *, /, >, >=, <, <=, =

List primitives and library functions:

  • cons, car, cdr, set-car!, set-cdr!, length, map

License

Copyright (c) 2011 James Coglan

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

More Repositories

1

sylvester

Vector, matrix and geometry math JavaScript
JavaScript
1,141
star
2

jsclass

Implementation of the core of Ruby's object system in JavaScript.
JavaScript
509
star
3

vault

Generates safe passwords so you never need to remember them
JavaScript
471
star
4

canopy

A parser compiler for Java, JavaScript, Python, Ruby
JavaScript
418
star
5

heist

Scheme in as little Ruby and as much Scheme as possible. Supports macros, continuations, tail recursion and lazy evaluation.
Ruby
364
star
6

restore

Simple remoteStorage server written in Node.js
JavaScript
294
star
7

terminus

Capybara driver written mostly in client-side JavaScript for cross-browser automation
JavaScript
179
star
8

jit

The information manager from London
Ruby
172
star
9

eventful

Because Ruby's Observable never does quite what I want
Ruby
125
star
10

siren

JSON parser that understands cross-references and casts to typed Ruby objects. Implements JSONQuery against JSON trees and Ruby object graphs.
Ruby
116
star
11

bake

How to make a book
XSLT
99
star
12

primer

Intelligent caching, no observers necessary
Ruby
89
star
13

nand2tetris

Solutions for http://www.nand2tetris.org/
Assembly
87
star
14

jake

Builds JavaScript projects using PackR and ERB
Ruby
78
star
15

svn2git

Ruby tool for importing existing svn projects into git and github.
Ruby
71
star
16

packr

Ruby version of Dean Edwards' Packer
Ruby
65
star
17

consent

Access control layer for ActionPack, providing a DSL for writing a firewall to sit in front of Rails controllers
Ruby
52
star
18

bluff

JavaScript implementation of topfunky's Gruff graphing library
JavaScript
42
star
19

coping

An experimental type-safe/context-aware templating library
Ruby
41
star
20

unsafe_sjr

Demo of unsafe SJR in Rails
Ruby
39
star
21

jstest

The cross-platform JavaScript test framework
JavaScript
38
star
22

node-csprng

Secure random numbers of any size in any base
JavaScript
36
star
23

wake

A build tool for web stuff
JavaScript
29
star
24

rspec-eventmachine

RSpec extensions for testing EventMachine code
Ruby
26
star
25

lisp-dojo

Dojo designed to introduce interpreter writing
Ruby
24
star
26

stickup

Tiny Scheme interpreter, suitable for use as a livecoded demo
Ruby
23
star
27

kanrens

Various implementations of microKanren
JavaScript
19
star
28

oyster

Command-line input parser that doesn't hate you
Ruby
16
star
29

action_flow

Specify request sequences in Rails
Ruby
14
star
30

tnt

Proof assistant for Typographical Number Theory
JavaScript
14
star
31

infer

Interpreter for inference rules
Ruby
13
star
32

yui

Mirror of YUI releases back to 2.2.2
JavaScript
10
star
33

3s

Small Subset of Scheme
JavaScript
9
star
34

vault-cipher

High-level authenticated encryption API used by Vault
JavaScript
9
star
35

toml

Cross-platform JavaScript TOML parser
JavaScript
9
star
36

faye-cookie-auth

Ruby
8
star
37

js-loader-examples

JavaScript
8
star
38

js-test-examples

How to run JS tests using various frameworks on different platforms
JavaScript
8
star
39

birdie

Sinatra app for making portfolio sites
Ruby
8
star
40

acceptance

Reflect on your Rails validations and generate JavaScript from them
Ruby
8
star
41

dotfiles

Vim Script
8
star
42

storeroom

Portable encrypted storage for JavaScript apps
JavaScript
8
star
43

corrode

Rust
8
star
44

lemonga.rb

just a harmless prank... for laughs
Ruby
7
star
45

nicod

Experimental logic programming system, written in Rust
Rust
7
star
46

classy_inputs

Adds type-reflecting class names to input tags in Rails
Ruby
7
star
47

remotestorage-oauth

Node.js library for getting authorization from remoteStorage servers
JavaScript
7
star
48

presentations

Slides for JavaScript talks
Ruby
7
star
49

burn-your-getters

CSS
7
star
50

has_password

Simple password-hashing abstraction for Rails models
Ruby
6
star
51

soundcloud.js

SoundCloud API wrapper for client-side JavaScript
JavaScript
6
star
52

is-sandwich

Tells you whether a thing is a sandwich
JavaScript
5
star
53

frp-irc

JavaScript
5
star
54

attr_locked

Allows you to stop ActiveRecord fields changing after an object is first created
Ruby
5
star
55

pathology

The goggles: they do nothing.
JavaScript
5
star
56

acceptance-old

A port of Ojay.Forms to Prototype, with a Rails plugin to generate client-side validation code
JavaScript
5
star
57

outcast

Music Hack Day project: broadcast your iTunes library to others over the web
JavaScript
5
star
58

york

Jekyll plugin for writing about programming
Ruby
5
star
59

jsapp

JavaScript
4
star
60

frippery

Functional streams for JavaScript
JavaScript
4
star
61

reading-and-writing

Ruby
4
star
62

mu_trumps

Cannes Midem MHD project
Ruby
4
star
63

socknet

TCP over WebSockets
JavaScript
4
star
64

jsbuild

Build tool for the JS.Package dependency system
JavaScript
4
star
65

wake-assets-ruby

Ruby HTML helper for assets managed by wake
Ruby
4
star
66

cuke-web

Browse, search and run your cukes from your browser
JavaScript
4
star
67

include_by_default

Specifies that associations should be included automatically with find() calls in ActiveRecord
Ruby
4
star
68

acts_as_uploaded

File upload plugin for Rails models
Ruby
3
star
69

toledo

JavaScript
3
star
70

pinpoint

Map location editing widget, based on Ojay and Google Maps
JavaScript
3
star
71

poker

Poker simulator for learning stats
JavaScript
3
star
72

jsmod

JavaScript
3
star
73

wake-assets-python

Python HTML helper for assets managed by wake
Python
3
star
74

reiterate

Extension for Prototype that adds syntactic sugar to Enumerable methods
JavaScript
3
star
75

jsdom-example

JavaScript
3
star
76

sequin

Generate uniformly distributed ints in any base from a bit sequence
JavaScript
3
star
77

rustlings

Rust
3
star
78

scheme-dojo

Little exercises to get familiar with Scheme and recursion
Scheme
2
star
79

holly

JavaScript and CSS dependency manager for Rails projects
Ruby
2
star
80

everything

Mini-app to display random entries from Wikipedia
Ruby
2
star
81

fowd-js-testing

Demo application with JavaScript tests
JavaScript
2
star
82

recurse-lisp-workshop

Python
2
star
83

parsing-techniques

Ruby
2
star
84

george

Like vimtutor, with additional hot beverages
Ruby
2
star
85

ruby-pci

Ruby implementations of algorithms from 'Programming Collective Intelligence'
Ruby
2
star
86

bmc

Web app collecting data on journalistic accuracy
Ruby
2
star
87

guardian-politics

Prototypal Ruby client for the Guardian Politics API
Ruby
1
star
88

rust-os

Following along with https://os.phil-opp.com/
Rust
1
star
89

jstest-phantomjs

How to run JS.Test on PhantomJS
JavaScript
1
star
90

dlt

Prototype archive format and version control system
Ruby
1
star
91

horrorshow

Experiment involving JavaScript and Ruby
Ruby
1
star
92

skwizzes

Solutions to Songkick quiz problems
Ruby
1
star
93

zairecma

Music Hack Day project, SF 2011
JavaScript
1
star
94

gramophone

Listen to neighbourhoods from the past
JavaScript
1
star
95

claw

Command-line tool for searching and opening files
Ruby
1
star
96

npm-problem

I haz a problem.
JavaScript
1
star
97

cuke-macros

Experiment wherein Cucumber features are rewritten using Scheme
Ruby
1
star
98

terminus-rails

Ruby
1
star
99

ci_search

Rails implementation of search engine from 'Programming Collective Intelligence'
Ruby
1
star