A Networking Library, inspired by BridgeNet2 & Bevy_Renet, made for ECS.
Net is an experimental library, expect bugs and major design changes. While the API should remain the same, there is no guarantee.
Net is a networking library for Roblox, or rather its a library that wraps around Roblox's RemoteEvents to solve certain issues and provide new API for networking on Roblox.
Some of the issues this library solves are:
- Overhead from RemoteEvents
- Ordering of Networking Events
- Lack of Type-Checking and Intellisense for working with RemoteEvents
Net also provides several utilities:
- Middleware
- Strict Type-Checking & Auto-completion
- Simple integration with Hooks
- Data-driven Design
You can learn more about how Net works and how to use it by visiting Getting Started with Routes. Or, you can keep reading to learn more about the technical details and design choices that went into creating Net.
One thing that separates Net from other networking libraries on Roblox is this key design choice. Net was made to work with ECS, a Data-driven approach to game design, which has influenced the design of the library largely and makes it unique from the rest.
With inspiration from Bevy_Renet, a Networking crate for use with the Bevy ECS in Rust, and another networking library on Roblox, BridgeNet2, Net pushes to provide similar functionality to these two libraries for ECS on Roblox.
Data-driven design opposes Event-driven design, which is what you can commonly see on Roblox, such as RemoteEvents themselves. Event-driven design has it's woes, which is why we opt for ECS and generally Data-driven design.
Event-driven design is sensitive to ordering, this makes it difficult to know when you might get data from an event. To solve this, Net does not use Events, it encourages you to query and send data in an ordered manner frame-by-frame, preferably with ECS.
Since it's encouraged to use ECS with Net, though not required, we suggest reading Matter — Why ECS? by Evaera.
In a Matter System:
local routes = require("routes.luau")
local ExampleRoute = routes.ExampleOne
local function exampleSystem(world)
-- Query through every networking call that frame on the Server
for i, player, ...data in ExampleRoute:query() do
-- Do something
end
-- Query through every networking call that frame on the Client
for i, _, ...data in ExampleRoute:query() do
-- Do something
end
-- Send data from the Client to the Server
ExampleRoute:send(...)
-- Send data to a Client from the Server
ExampleRoute:send(...):to(Player)
end
[dependencies]
Net = "yetanotherclown/net@0.7.x"
Note: Wally does not export types automatically, if you wish to use Strict Typing with Net, install Wally Package Types with Aftman.
You can find Net as YetAnotherNet on NPM.
npm i @rbxts/yetanothernet
To build yourself, use:
rojo build -o "Net.rbxm"
For more help, check out the Rojo documentation.
- Basic Functionality
- Stable Core API
- Strict Typing
- Unreliable Channel
- Middleware
- Void
sender
return argument when querying on the Client, with respect for Strict Typing - Rate limiting
- Debugger
- Internal Use of Buffers -- When released on Roblox