thelogic
A Logic Engine written in TypeScript
History
Discover the release history by heading on over to the releases page.
WARNING: CURRENTLY IN DEVELOPMENT!
To Use:
- Install (npm required):
npm install thelogic
- Import:
;
- Logic away:
;;;;;exp.valueenv; // true
Manual coming soon (maybe).
To Help Develop:
Currently a private repo.
- Clone the repository (git required):
cd MY_PROJECTSgit clone https://github.com/trharley/thelogic.git
- Install dependencies and development-dependencies (npm required):
cd thelogic/npm install
- Tests are run:
npm test
- To transpile the TS into JS (not necessary for testing):
npm run-script buildjs
the output goes into build/
.
- To generate documentation:
npm run-script builddocs