Skip to content
This repository has been archived by the owner on Oct 23, 2020. It is now read-only.

catgirlinspace/rbx-engine.io

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 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

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Lua 100.0%