A very-fast & powerful networking library for Roblox. https://imezx.github.io/Warp/
Find a file
lhkzh 921e1bd282
Update init.luau
fix bug: server function be invoke too manay time.

server code 
local Wrap = require(game.ReplicatedStorage.Warp)
local Func = Wrap.Server("Func");
Func:Connect(function(player: Player, str,num) 
	warn("on_invoke", player.Name)	
	task.wait(1)
	return "hi.."
end)

client code:
local Wrap = require(game.ReplicatedStorage.Warp)
local Func = Wrap.Client("Func");
warn(Func:Invoke(3, "balala"))
2024-05-24 17:13:17 +08:00
.github/workflows Update deploy.yml 2024-01-27 09:38:31 +07:00
.vscode fix 2024-03-17 16:04:48 +07:00
docs v1.0.11 2024-05-19 13:17:07 +07:00
node_modules v1.0.5 & docs update 2024-01-31 13:33:19 +07:00
src Update init.luau 2024-05-24 17:13:17 +08:00
test v1.0.8 2024-03-14 11:58:08 +07:00
TestEZ v1.0.8 2024-03-14 11:58:08 +07:00
.gitattributes v1.0.5 & docs update 2024-01-31 13:33:19 +07:00
.gitignore v1.0.10-test 2024-05-04 12:49:50 +07:00
.luaurc v1.0.5 & docs update 2024-01-31 13:33:19 +07:00
aftman.toml change 2024-04-06 11:21:35 +07:00
default.project.json change 2024-04-06 11:21:35 +07:00
LICENSE update LICENSE 2024-01-05 20:16:53 +07:00
package-lock.json v1.0.5 & docs update 2024-01-31 13:33:19 +07:00
package.json v1.0.5 & docs update 2024-01-31 13:33:19 +07:00
README.md update readme.md 2024-01-05 19:33:37 +07:00
runTests.server.luau v1.0.8 2024-03-14 11:58:08 +07:00
test.project.json v1.0.8 2024-03-14 11:58:08 +07:00
wally.toml v1.0.11 2024-05-19 13:17:07 +07:00
Warp.rbxm v1.0.11 2024-05-19 13:17:07 +07:00
WarpPlayground.rbxl v1.0.4 2024-01-30 13:36:08 +07:00

Warp icon

Warp

A very-fast & powerful networking library for Roblox.


Why Warp

Performance

Warp is very-fast with much less bandwidth compared to native.

🍃 Lightweight

Warp is a lightweight library for Roblox.

📊 Task

Warp optimized efficient for large-scale task.

🔎 Typing

Warp written with strictly-typed.


Visit Warp documentation