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

@matchbook/ts

v1.0.0

Published

![logo](assets/banner.png)

Downloads

21

Readme

logo

🔥 matchbook

pattern matching in typescript & javascript made easy

matchbook is a lightweight & easy to use pattern matching library, for TypeScript and JavaScript.

If you want to know more about matchbook, check out the docs or read on!

If you want to start using matchbook, install it like any other npm package:

npm i @matchbook/ts


it's as easy as a-b-c 1-2-3

badges

|npm |code |other| |--- |--- |---| |npm version |top lang |build| |pkg size |google typescript style |license| |source rank |codacy | | | |codecov | |

table of contents

what matchbook does for you

(list is in no particular order)

  • expressive - pattern matching helps you write less code that's more expressive than if/else trees
  • simple - API is just 5 functions, 1 error class, and some stylistic aliases for the core functions
  • powerful - type inference backed by Typescript
  • well documented - check out the docs here!
  • low cost - no runtime dependencies, & small package size
  • reliable - 100% unit test coverage, with all pushes verified via Travis CI

what you can do for matchbook

use it!

The project is currently in beta, meaning the functionality & API are complete & fully covered by tests, but the library hasn't been battle-tested and may need some final tweaks before v1.0.0.

watch it!

Watch the project for releases to be notified of cool new features, and the v1.0.0 release!

ask questions!

If you have any questions, any feedback, or just want to shoot the shirt, open an issue of type question, and we'll do our best to answer quickly!

pattern matching explained

Pattern matching is a modern language feature that is similar to a switch / case statement.

With pattern matching, you can switch on the type of the incoming value, meaning you can reduce a lot of extra-verbose if-else branches just by replacing them with pattern matching statements.

You might consider using pattern matching if you find you're switching on types or states frequently, and want to handle the different cases in a concise and expressive way.

This project takes heavy inspiration from Rust's pattern matching idiom.

matchbook at a glance

want to know more? read the docs! matchbook at a glance

matchbook at a slightly longer glance

want to know more? read the docs!

switching on part of an object

enum example

switching on an enum

enum example

acting on the type of an Event

enum example

matching if a value is an instanceof a constructor

enum example