You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

mudb

Package Overview
Dependencies
Maintainers
2
Versions
68
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mudb

Real-time database for multiplayer games

1.0.1
latest
Source
npmnpm
Version published
Weekly downloads
23
27.78%
Maintainers
2
Weekly downloads
 
Created
Source

mudb

a collection of modules for building realtime client-server applications consisting of multiple protocols

concepts

protocol

A protocol in the mudb sense, is a collection of related messages and handlers which are grouped by functionalities or whatever.

message

Message passing is the basic building block for communication in a distributed system. In mudb, messages are strongly typed using user-defined schemas. mudb provides a reliable, ordered message delivery and a faster but unreliable method for sending messages immediately.

schema

A schema is a type declaration for the interface between client and server.

socket

mudb communicates over the generic socket abstractions. Sockets support both reliable and unreliable delivery. Reliable delivery is used for messages, while unreliable delivery is used for state replication. Unreliable delivery is generally faster since it does not suffer from head-of-line blocking problems.

modules

examples

further reading

Light reading:

Academic references:

FAQ

FAQ

credits

Development supported by Shenzhen DianMao Digital Technology Co., Ltd.

Copyright (c) 2020 Mikola Lysenko, Shenzhen DianMao Digital Technology Co., Ltd.

Keywords

mudb

FAQs

Package last updated on 14 Jan 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts