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

warpgate

v0.1.0

Published

A sharded push oriented key value store

Downloads

1

Readme

Warpgate

Build Status

Warpgate is an experimental push oriented key value store. Instead of focusing on making warpgate as fast as possible it's key design goal is to make it needed as little as possible.

Most modern mainstream databases, SQL or NoSQL, tend to follow a pull based model, this means client services ask the database for answers reactively as they need them. Warpcore offsets the ammount of times you have to reach out to the database by instead of letting client services ask for the data they want, client services tell warpgate what data they're interested in. Once a client service registers an interest in a data point, warpgate will push that data point to clients of interest and automatically keep it up to date.

It's common knowledge in database performance optimization that the fastest query is the one that you never have to make. So instead of optimizing for max requests per second, Warpgate optimizes for how little requests per second it needs to answer.

Component Analysis

Component Diagram Internally, warpgates biggest design goals are simplicity and reuse. Most internal libraries are used in at least two distinct services.

  • Warpgate Client API - The entry point of the client library
  • Warpgate Ephemeral Storage - In memory volatile storage
  • Warpgate Persistent Storage - To disk persistent storage
  • Warpgate Client Connector - The connector for connecting to upstream services
  • Warpgate Server Connector - The connector for connecting to downstream services
  • Warpgate Courier - The push based notification system