npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

brainunfuck

v1.1.4

Published

This is a compiler for a custom programming language called "brainunfuck". "brainunfuck" compiles to brainfuck. It also contains an own interpreter for brainfuck, to immedeately run compiled brainfuck code.

Downloads

3

Readme

Brainunfuck

This is a compiler for a custom programming language called "brainunfuck". "brainunfuck" compiles to brainfuck. It also contains an own interpreter for brainfuck, to immedeately run compiled brainfuck code.

npm i -g brainunfuck

Node Version 14 is recommended. Untested with versions lower than that.

Example

Our example file:

print 'A';

Compiled brainfuck code using unfuck compile ./path/to/file.unfuck:

[-]+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++.

Output using unfuck run ./path/to/file.unfuck or unfuck run --no-compiler ./path/to/compiled/file.b:

A

Limitations

A big limitation is memory allocation. All memory has to be "allocated" at compile time, since brainfuck doesn't allow us to get the current position on the band. This means, that you basically only have global variables, if you define variables in loops, the same cells on the band in brainfuck are used on each iteration.

The same applies to all static strings or numbers in loops. They are redifined on every iteration, but on the exact same cells as in the last iteration.

More Examples

Literals

5; <- integer literal
'A'; <- char literal (single quoted)
"Hello"; <- string literal (double quoted)

Maths

Currently, only addition and subtraction is implemented

5+5;
5-5;

Variables

Valid variable names only contain the letters [a-z]

int $var; <- variable initalization
$var = 5; <- variable assignment
$var + 5; <- variable reference

Loops and conditionals

if 0 {
    print "I won't be printed...";
}; <- note the semicolon at the end of the if clause

if 1 {
    print "I WILL be printed!";
}; <- note the semicolon at the end of the if clause


int $i;$i=10;
while $i {
    print "I will be printed 10 times!!!";
    $i = $i - 1;
}; <- also here, semicolon at the end

Translate brainfuck to c++

The command line utility contains an option to compile and translate brainfuck code to valid c++ code. Just run

unfuck translate --language c++ ./path/to/file.unfuck

If you wanted to compile raw brainfuck code, without compilation, run

unfuck translate --language c++ --no-compiler ./path/to/file.b