0.1.2 • Published 8 years ago

relang v0.1.2

Weekly downloads
5
License
MIT
Repository
github
Last release
8 years ago

relational-node

a relational language implemented in node

travis badge code climate badge david deps badge

when i learned about programming paradigms, my engineering world burst wide open. a paradigmatic approach to programming is key to avoiding dogma and choosing the right tool for the job.

this repository contains code that implements a relational language in node, based on a post by @tomstuart, http://codon.com/hello-declarative-world.

Up and Running

  1. Fork and clone this project
  2. Install dependencies: npm install
    • Babel: compile es6 to es5
    • Mocha and Chai: test framework and expect library, respectively

Tests

This project uses Mocha and Chai for testing. To run the tests:

npm test

Scripts

  • build: compile es6 from /lib/es6 to es5 files in /lib/es5 (the tests run off of the es5 deps)
  • test: runs the tests