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

@plurid/messager-server

v0.0.0-11

Published

Cloud Service for Centralized Message Queuing Server

Downloads

14

Readme

messager is a service or self-hosted messaging queue.

messager is intended to:

  • be a centralized, single messaging space for multi-project software systems;
  • handle publish/subscribe, notify across multiple users, tokens, domains.

messager has clients for:

The messager-server uses plurid to explore information as a 3D structure.

Contents

About

messager acts as a central messaging service. Once configured with a token, the messager client can point to the network endpoint, passing the token.

Client

Support

messager has client support for

Server

Building

docker build \
    -t messager-server \
    -f ./configurations/production.dockerfile \
    --build-arg PORT=56965 \
    --build-arg MESSAGER_ENDPOINT_GRAPHQL=/ \
    --build-arg MESSAGER_DATABASE_TYPE=mongo \
    --build-arg MESSAGER_LOG_LEVEL=0 \
    --build-arg MESSAGER_QUIET=false \
    --build-arg MESSAGER_CUSTOM_LOGIC_USAGE=false \
    --build-arg MESSAGER_PRIVATE_USAGE=true \
    --build-arg MESSAGER_PRIVATE_OWNER_IDENTONYM=identonym \
    --build-arg MESSAGER_PRIVATE_OWNER_KEY=key \
    --build-arg MESSAGER_PRIVATE_TOKEN=secret-token \
    --build-arg MESSAGER_MONGO_USERNAME=admin \
    --build-arg MESSAGER_MONGO_PASSWORD=1234 \
    --build-arg MESSAGER_MONGO_ADDRESS=localhost:56966 \
    --build-arg MESSAGER_MONGO_CONNECTION_STRING= \
    --build-arg MESSAGER_TEST_MODE=true \
    --build-arg MESSAGER_OPTIMIZATION_BATCH_WRITE_SIZE=1000 \
    --build-arg MESSAGER_OPTIMIZATION_BATCH_WRITE_TIME=2000 \
    .

Run the container with --network="host" if running the database on the same host.

docker run \
    --network="host" \
    -d messager-server

Or run on a custom port (8855)

docker run \
    -d -p 8855:56965 \
    messager-server

Testing

The messager server can use MongoDB as a database. For testing purposes, mongo can run in a docker container.

docker pull mongo
docker run -d --name mongo-messager \
    -p 56966:27017 -e MONGO_INITDB_ROOT_USERNAME=admin \
    -e MONGO_INITDB_ROOT_PASSWORD=1234 mongo

Connect to the mongo instance with

mongodb://admin:1234@localhost:56966/?authSource=admin

to verify the connection.

Packages

@plurid/messager-server • the server application

@plurid/messager-client-javascript • the NodeJS client

@plurid/messager-client-python • the Python client

Codeophon