A CLI Brainfuck to Node.js compiler, written in Node.js. Brainfuck is an esoteric programming language (or esolang). It's a Turing-complete minimalist language and can be thought as software art or as a joke, depending on how you want to see it. Find out more on Wikipedia.
In order to use the CLI command, you need to install it globally:
npm install --g node-brainfuck-compiler
Then, execute:
brainfuck-compiler
You should see "hello world", as it is the default "Brainfuck code", if no input is provided.
To provide input and output:
brainfuck-compiler -i path/to/input.bf -o path/to/output.js
Paths must be relative to the current working directory.
CLI options available:
- -i for the input file path (Brainfuck source code)
- -o for the output file path (Node.js JavaScript output)
Feel free to open an Issue or send me a direct message.
We use SemVer for versioning. For the versions available, see the tags on this repository.
- Daniele Molinari - Sadkit
This project is licensed under the Apache License 2.0 - see the LICENSE.md file for details.