https://github.com/falinor/brainfuck-interpreter
A brainfuck interpreter built to practice TDD (Test-Driven Development).
https://github.com/falinor/brainfuck-interpreter
Last synced: about 1 year ago
JSON representation
A brainfuck interpreter built to practice TDD (Test-Driven Development).
- Host: GitHub
- URL: https://github.com/falinor/brainfuck-interpreter
- Owner: Falinor
- License: mit
- Created: 2018-01-11T10:22:26.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-16T13:50:19.000Z (over 8 years ago)
- Last Synced: 2025-01-24T10:31:58.838Z (over 1 year ago)
- Language: JavaScript
- Size: 37.1 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# brainfuck-interpreter
A brainfuck interpreter built to practice TDD (Test-Driven Development).
## Getting started
Fork this repository then clone yours.
```sh
$ git clone git@github.com:/brainfuck-interpreter.git
$ npm i
```
Run the project
```sh
$ npm start
```
Run unit tests
```sh
$ npm test
```
Run unit tests in live-reload mode
```sh
$ npm run test:watch
```