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

Latest commit

 

History

14 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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

Stars

2 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages