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

@queueupnow/message-driven

v0.0.1-alpha1

Published

send and receive entities via pub/sub message brokers

Downloads

4

Readme

For details about running kafka in docker-compose, see https://github.com/wurstmeister/kafka-docker. I also found some useful notes at http://www.smartjava.org/content/setting-up-kafka-cluster-docker-copy/

docker-compose.yaml needs to have an address that will be valid both inside and outside of the container for KAFKA_ADVERTISED_HOST_NAME. Best to use a hostname that is pointing to the local ip address (but not localhost or 127.0.0.1, since those won't resolve correctly within the container unless the port number is the same both inside and out).

Repo uses direnv to automatically set environment vars when entering the directory. Installation instructions are here: https://direnv.net/docs/hook.html

Kafka clients intended to be built around node-rdkafka: https://github.com/Blizzard/node-rdkafka Some notes about kafka use in node/typescript are here: https://rclayton.silvrback.com/thoughts-on-node-rdkafka-development

Project used google GTS to initialize all of the typescript ecosystem: https://github.com/google/gts

I added mocha-based unit tests, largely because jest required a bunch of deprecated packages, which annoyed me.

to run kafkacat as a producer against the docker-compose cluster:

docker run --interactive --rm \
        confluentinc/cp-kafkacat \
        kafkacat -b 192.168.1.6:9092 \
                -t test \
                -K: \
                -P <<EOF

1:{"order_id":1,"order_ts":1534772501276,"total_amount":10.50,"customer_name":"Bob Smith"}
1:{"order_id":4,"order_ts":1534772501276,"total_amount":10.51,"customer_name":"Bob Smith2"}
1:{"order_id":5,"order_ts":1534772501276,"total_amount":10.52,"customer_name":"Bob Smith3"}
2:{"order_id":2,"order_ts":1534772605276,"total_amount":3.32,"customer_name":"Sarah Black"}
3:{"order_id":3,"order_ts":1534772742276,"total_amount":21.00,"customer_name":"Emma Turner"}
EOF

to run kafkacat as a consumer against the docker-compose cluster:

docker run --tty --interactive --rm \
           confluentinc/cp-kafkacat \
           kafkacat -b 192.168.1.6:9092 \
           -C \
           -f '\nKey (%K bytes): %k\t\nValue (%S bytes): %s\n\Partition: %p\tOffset: %o\n--\n' \
           -t test