@rbxts/net
TypeScript icon, indicating that this package has built-in type declarations

3.0.9 • Public • Published

RbxNet

Advanced multi-language networking framework for Roblox.

npm version


RbxNet is a definition-based networking framework for Roblox, built in TypeScript, but also available in Luau. It simplifies the creation and management of networking in Roblox experiences.

Features

  • Create a definitions file of all your networking-based objects in your game. This is a single source of truth for your networking objects. No more tracking instances manually, or having to programmatically create them manually. Each network object is represented by an identifier you define, and by default is created on the server at runtime.
  • Scoped namespacing - Networking objects can be namespaced, so you can group related networking objects for easier organization.
  • Simple contextual-based API for fetching and using the networking objects.
    • <DefinitionObject>.[Server|Client].Get To fetch objects from your definitions as usable objects.
  • Ability to add middleware to your networking objects. Type checking, rate limiting, restricting, logging, you name it.
    • RbxNet comes with TypeChecking, RateLimiter and Logger built-in.
  • *AsyncFunction: Asynchronous networking remotes - Event-driven send/recieve messaging between server and client, with no pitfalls of regular Functions.
  • Asynchronous callbacks and methods: RbxNet is a roblox-ts native library, meaning it supports promises out of the box.
  • ExperienceBroadcastEvent (v3.0): Experience-based broadcasting through MessagingService. Allows for uses like cross-server chat, server browsers and announcements.

Documentation:

Available Here

Extensions

Libraries

Listed here are libraries based around, or useful to RbxNet.

Library Languages Description
EncryptedNet Luau Authenticated encryption of Roblox networking with ECDH key exchanges and ChaCha20 ciphering.

Tools

Listed here are tools that are useful to RbxNet.

Tools Type Description
rbxts-transform-guid TypeScript Transformer Generates compile-time GUIDs for Enums. Useful for compile-time remote ids.

More Help & Links

Australis OSS Community

Readme

Keywords

none

Package Sidebar

Install

npm i @rbxts/net

Weekly Downloads

56

Version

3.0.9

License

MIT

Unpacked Size

143 kB

Total Files

63

Last publish

Collaborators

  • vorlias