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

aprils

v1.0.8

Published

A little parsing library

Downloads

9

Readme

Aprils

Aprils is a little library for quickly writing parsers from scratch 🔥.

Here's simple parser for words.

const { match, peek, feed } = require('aprils')

function letters() {
  return match(/^\w+/)
}

function separator() {
  return match(/^\W*/) // stuff like spaces and periods
}

function word() {
  sparator()
  return letters()
}

Let's test it out!

feed('Luke, I am your father')

word() // returns 'Luke'
word() // returns 'I'"
word() // returns 'am'

Use peek to check the next token

function upper() {
  return match(/^[A-Z]/)
}

function lower() {
  return match(/^[a-z]/)
}

feed("AbCdE")

peek(upper) // returns `true` because the next token is uppercase
peek(lower) // returns `false` because the next token isn't lowercase

Use skip to add choices

const { skip } = require('aprils')

// match lowercase or uppercase

function letter() {
  return skip(lower) || upper()
}

feed('AbC')

letter() // returns 'A'
letter() // returns 'b'
letter() // returns 'C'

You can add more choices using JavaScript's || operator

// accept A or B or ... or Z

skip(A) || skip(B) || ... || skip(Y) || Z()

API

feed(string)

Sets the input string.

match(pattern)

Consumes and returns part of the input string that matches pattern. Note that pattern should start with ^ to match from the start of the input string.

peek(parser, [args...])

Executes a parser and returns true if it was successful. The input string isn't consumed.

skip(parser, [args...])

Executes a parser and returns the result if it was successful. The input string is only consumed on success.