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

@virgodev/websocket-support

v1.0.1

Published

provides a uniform system for sending and receiving websocket messages

Downloads

3

Readme

Virgodev Websocket Support

provides a uniform system for sending and receiving websocket messages

Project Goals

  • [x] documentation for connecting django-channels
  • [x] support functions for making django-channels easy
    • [x] signal for when a message is received
    • [x] create a function to send messages to a user
    • [x] create a function to send messages to a group

Get Started

  1. Install virgodev_websocket_support and add the websocket support libraries

    pip install virgodev_websocket_support
    pip install daphne uvicorn websockets
  2. Add INSTALLED_APPS setting

    INSTALLED_APPS = (
        "daphne",  # install at the top to convert `runserver` into a websocket client
        "django.contrib.auth",
        "django.contrib.contenttypes",
        "django.contrib.sessions",
        "django.contrib.sites",
        "virgodev_websocket_support",
        ...
    )
  3. Add ASGI_APPLICATION setting

ASGI_APPLICATION = 'virgodev_websocket_support.asgi.application'

or use the asgi from your own application's asgi file

from virgodev_websocket_support.asgi import application as app
application = app
  1. Add CHANNEL_LAYERS setting

    assign the host to the same redis instance as your cache

    CHANNEL_LAYERS = {
        "default": {
            "BACKEND": "channels_redis.core.RedisChannelLayer",
            "CONFIG": {
                "hosts": [CACHES["default"]["LOCATION"]],
                "group_expiry": 60 * 10,
            },
        },
    }

Websocket communication

login clients

use the socketLogin function to set the token as soon as you recieve it The token will be used to login immediately if the socket is already connected, and will be used each time the socket reconnects

import { socketLogin } from '@virgodev/websocket-support'
socketLogin('5de4ffe3df2434140cda6afb27aa3e684d13c65b');

You can use the async property socket.isLoggedIn to check if the socket has logged in

communicate from server to client

you can send a message to everyone, specific users, or a group by using send_message events are arbitrary. Make up events for your own use

from virgodev_websocket_support.utils import send_message, send_message_to_everyone

bob = User.objects.get(username="Bob")
group = Group.objects.get(name="Hatfields")

send_message_to_everyone(event='chat', message=dict(msg="hello everyone!"))
send_message(recipients=[bob, group], event='chat', message=dict(msg="hello everyone!"))

You can send messages to specific users or groups as strings as well

send_message(recipients=['everyone', 'user.1', 'group.1'], ...)

On the client side you can catch messages using the socket directly

import { getSocket } from '@virgodev/websocket-support'

const socket = getSocket('<host-or-leave-black-to-call-home>');
socket.on('chat', (msg) => { console.log(msg.msg); });

or use the component:

<script>
import WebsocketIndicator from '@virgodev/websocket-support';
</script>
<template>
    <websocket-indicator @chat="handleChat" />
</template>

Then indicator will show an X when it isn't connected

communicate from client to server

It is advised to have clients send messages via the normal rest api

Production

Install and use uvicorn for production websocket handling. Don't forget to add the current version to your requirements file

pip install uvicorn

In your product-py3.conf file, add a websocket catch to make it run websockets

# route websockets to uvicorn
route = ^/ws/ httpdumb://%d../web.socket

# spawn the uvicorn server
# modify your project asgi as needed
attach-daemon = DJANGO_SETTINGS_MODULE=project.settings.development uvicorn --uds web.socket project.asgi:application

or create a supervisor conf

[fcgi-program:<your-project>]
socket=tcp://0.0.0.0:10964
env=DJANGO_SETTINGS_MODULE=project.settings.production
directory=%(here)s/..
command=%(here)s/../venv-<yourvenv>/bin/uvicorn --fd 0 project.asgi:application
numprocs=4
process_name=uvicorn-%(process_num)d
redirect_stderr=true
redirect_stdout=true
user=www-data
group=www-data
chown=www-data
chmod=777

Troubleshooting

If your websockets connect but immediately reject, it could be because you are missing the correct setting for ALLOWED_HOSTS