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

openmatch-node

v0.1.27

Published

an open match SDK implementation in typescript

Downloads

7

Readme

openmatch-node

an unofficial typescript implementation of the open-match SDK.

Scope and Goals

the open match framework consists of several gRPC services and consumers. A few provided by open-match core installation and others need to be implemented by the game developers. This library is a typescript implementation of gRPC/protobuf API allowing ts/js developers to implement a highly scalable match maker based on open-match for multiplayer games. deployment of open match even locally is based on kubernetes (minikube for local installation). All the installation instructions can be found on https://www.openmatch.dev

follow the official docs, the tutorials in this repo are a typescript implementation of the original tutorials written in golang. You can find the original tutorials here: https://github.com/googleforgames/open-match/tree/main/tutorials

What is Open Match

Open Match is an open-source game matchmaking framework that simplifies building a scalable and extensible Matchmaker. It is designed to give the game developer full control over how to make matches while removing the burden of dealing with the challenges of running a production service at scale.

Why Open Match

Building your Matchmaker is hard! Along with implementing the core logic to generate quality matches, it also involves solving challenging problems such as handling massive player populations, effectively searching through them and concurrently processing match generation logic at scale. Open Match framework provides core services that solve these problems so that the game developers can focus on the matchmaking logic to match players into great games. In comparison to off-the-shelf config based Matchmaking solutions, Open Match enables game developers to easily build a customized Matchmaker that can account for the unique requirements of the game.

The official docs are here: https://open-match.dev/site/docs/overview/