Awesome
relational-node
a relational language implemented in node
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][2], http://codon.com/hello-declarative-world.
Up and Running
- Fork and clone this project
- Install dependencies:
npm install
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