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

asciidots

v1.2.4

Published

Parses the Esolang ASCIIDots

Downloads

20

Readme

ASCIIDots

This project is a Node.JS interpreter for the esolang ASCIIDots, created by Aaron Janse

Current Syntax

Currently import scripts don't seem to work properly when they involve operations that store and recall dots for later. Any advice would be appreciated.

| Character | Description | | :---: | :--- | | - | Allows the dot to move horizontally | | | | Allows the dot to move vertically | | + | Acts as crossroads; dots can pass through this horizontally or vertically | | ~ | Takes a dot input from the bottom and left; if the bottom's value is 0, then the left one continues on to the right. If the bottom's value is not, then the dot coming from the left starts moving upward | | : | If a dot passes this and has a value equal to 0, it is deleted | | ; | If a dot passes this and has a value equal to 1, it is deleted | | ! | If underneath a ~, reverse it so that 0 makes the dot move up and any other number makes it continue on right | | $ | Prints a value to the console | | # | Sets the value of the dot, can also be used to get the value of the dot in a print command | | @ | Sets the address of the dot, can also be used to get the address of the dot in a print command | | _ | Marks that the console will not print a newline after its message | | a | Marks that the console will print the ASCII character equivalent of a number | | ? | Asks for user input; may only be used after a # or @ | | ^ | Changes the dot's direction to up | | > | Changes the dot's direction to right | | < | Changes the dot's direction to left | | v | Changes the dot's direction to down | | * | A dot that hits this character will have itself duplicated, with the duplicates travelling in every possible (connected) direction | | \ | A "mirror" that changes the dot's direction | | / | Another "mirror" that changes the dot's direction | | () | Anything inside these parentheses will loop forever | | [] | Operation inside will be evaluated; a vertical-moving dot will be eval'd against a horizontal dot. The horizontal dot will be deleted and the vertical will continue | | {} | Operates similar to [], but a horizontal dot is eval'd against a vertical dot and the horizontal dot is outputed | | & | Ends the program | | "" or '' | Marks a string that the value or print command can use | | %! | Imports a file as a character. Do not specificy the directory if you want to use a built in library. Usage: %!file.dots f | | %^ | Used when creating your own library. The character following it will be the entry and exit point for the library | | %$ | Used to denote warps. You can put multiple letters next to eachother to denote multiple warps. You can only use a warp twice in the code |

If there is any functionality missing (Works on the official website and doesn't work here) then please leave an issue on github with the code that should work! Thanks :)

Installation

Run

npm install asciidots -g

to install Asciidots globally

Running

Use the command

asciidots run FILE_PATH

to run a file with the asciidots interpreter.