0.0.3 • Published 5 months ago

nbloc v0.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

To flow on, to perpetually wander, to pass through states of existence.

{ Cont , Proc , runProc } = require "nbl"

print = (x) -> -> console.log x
pause = Cont (_, r) -> setTimeout r, 1000

countDown = Proc( print 3 ).then( pause ).
            then( print 2 ).then( pause ).
            then( print 1 ).then( pause ).
            then( print "Lift off!" )

runProc countDown, ->

Install

It's not necessary to install nbl to use it in a web browser, just link to it with a script tag.

<!doctype html>
<html>
  <head>
    <script src="//nbl-cdn.appspot.com/nbl.min.js"></script>

To use it as a Node module:

$ npm install nbloc

Contribute

$ git clone git://github.com/nbl.git
$ cd nbloc
$ npm install --dev
$ make dist
0.0.3

5 months ago

0.0.2

7 months ago