Skip to content

Engine.IO client for Roblox with roblox-ts type definitions. This has been modified to support the new @rbxts package scope (this is an old package), and supports authorization.

License

Notifications You must be signed in to change notification settings

Fruities/rbx-engine.io

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Installation

npm install rbx-engine.io

Example

import Engine from 'rbx-engine.io'
const Socket = new Engine<string>() // Connects to localhost

Socket.On('open', () => {
	print('Connected')
	Socket.Send('test')
})

Socket.On('message', (data) => {
	print(`Message recieved: ${data}`)
})

Socket.On('close', (data) => {
	print('Disconnected')
})

About

Engine.IO client for Roblox with roblox-ts type definitions. This has been modified to support the new @rbxts package scope (this is an old package), and supports authorization.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Lua 100.0%