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

gopher-menudle

v0.3.0

Published

create Gopher menus with ease

Downloads

10

Readme

Menudle renders Gopher menus in Node.

Put this in a string:

:dblunderline Hello, friend of the gophers!

This is an example Gopher menu. It's pretty cool! Menudle will wrap this long line to 72 characters per line (but that's configurable if you're prefer something else!).

:underline Some features

You can do a lot of stuff with Menudle. You may notice that this text doesn't need anything special; it's rendered as text.

:link 0 localhost:70/guide.txt Check out this cool guide

The above will be formatted as a link and it'll actually work! You can leave off the port if it's 70, Menudle will fill it in for you:

:link 0 localhost/something.txt No need for the port!

It's not recommended, but you can leave off the link type and Gopher will try to figure it out for you:

:link localhost/guide.txt It's a .txt, so it's a "0"
:link localhost/pancakes.gif It's a .gif, so it's a "g"
:link gopherpedia.com/ It's a root, so it's a "1"
:link http://evanhahn.com/ It's HTTP(S), so it's of type "h"

And then render it:

var menudle = require('menudle')
response = menudle(myString)

And you're done! Happy building of Gopher menus.