@rbxts/red
v1.0.2
Published
A wrapper around jackdotink's [Red](https://github.com/jackdotink/Red)
Downloads
6
Readme
@rbxts/red
roblox-ts wrapper around Red.
Example
Server
import { Server, Clock } from "@rbxts/red";
const Net = Server("Net");
Clock(5, () => Net.FireAll("HelloWorld"));
Client
import { Client } from "@rbxts/red";
const Net = Client("Net");
Net.On("HelloWorld", () => print("Hello, world!"));