Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ndhoule/javacsript
Computer science fundamentals implemented in JavaScript
https://github.com/ndhoule/javacsript
Last synced: 13 days ago
JSON representation
Computer science fundamentals implemented in JavaScript
- Host: GitHub
- URL: https://github.com/ndhoule/javacsript
- Owner: ndhoule
- Created: 2013-02-27T21:07:11.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-11-25T05:08:30.000Z (almost 11 years ago)
- Last Synced: 2024-04-10T13:55:35.484Z (7 months ago)
- Language: JavaScript
- Homepage:
- Size: 259 KB
- Stars: 0
- Watchers: 2
- Forks: 3
- Open Issues: 26
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
JavaCSript [![Build Status](https://travis-ci.org/ndhoule/javacsript.png)](https://travis-ci.org/ndhoule/javacsript) [![Coverage Status](https://coveralls.io/repos/ndhoule/javacsript/badge.png)](https://coveralls.io/r/ndhoule/javacsript)
==========Computer science fundamentals implemented in JavaScript.
## File Structure
You can find all source files in `src` and all tests in `test/unit`. The files
contained in `test/config` set up things like coverage, unboxing Chai globally,
etc.## Testing
This repo uses Grunt to run tests. To install all required dependencies, run:
```sh
sudo npm install -g grunt-cli
npm install
```### Grunt Tasks
`grunt dev`: Run JSHint, tests located inside of `./test` ending in
`[Ss]pec.js`, and run and open an HTML coverage report.`grunt watch`: Run `grunt test` and `grunt spec` after edits to any source or
test file.### Precommit Hooks
Run `bin/git-hooks` to enable pre-commit testing. This will prevent you from
committing if you have failing specs. If you need to override the commit tests,
run `git commit` with the `-n` flag.## Credits
Parts of this repository follow Nicholas C. Zakas'
[Computer Science in JavaScript](https://github.com/nzakas/computer-science-in-javascript)
series.