An open API service indexing awesome lists of open source software.

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).

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
```