RbxNet
Advanced multi-language networking library for Roblox.
- Definitions
- Client
- Server
shared/remotes.ts
client/main.client.ts
server/main.server.ts
Contextual Networking API
Remotes are managed entirely by RbxNet. All you need are identifiers for the remotes.
The code is segregated, to make the APIs more clean and clear.Net.Server
is for server code, Net.Client
is for client code. Simple as that.
Networking Middleware
RbxNet comes with built-in useful middleware such as TypeChecking and RateLimit, but you can also roll your own custom middleware.
Definitions API
Take advantage of the declarative Definitions API, which allows you to define your remote instances in one place, and use from both the server and client.