Skip to content

Releases: Tom32i/netcode

v3.0.0 - Golang support

08 May 15:15
84ed2a2

Choose a tag to compare

What's Changed

  • Adding Golang support by @Tom32i in #19
  • Moved to Vite.js for dev env
  • Updated tests and documentation

Full Changelog: v2.0.5...v3.0.0

v2.0.5

11 May 09:35

Choose a tag to compare

Security update.

v2.0.4

27 Aug 12:07

Choose a tag to compare

Updated dependencies

v2.0.2

20 Jul 10:12

Choose a tag to compare

Security update

v2.0.0

27 Dec 09:55
21d9e9d

Choose a tag to compare

Moved to ws package for Websocket implementation.

v1.0.7

03 Dec 22:37

Choose a tag to compare

  • Fixed error in import path.

v1.0.6

03 Dec 22:35

Choose a tag to compare

  • Handle client list and ID generation in a dedicated class.
  • Fixed LongStringCodec to support emoji.

v1.0.5

03 Dec 22:33

Choose a tag to compare

  • FIxed StringCodec to support emoji 🎉

v1.0.4

03 Dec 22:31

Choose a tag to compare

  • New LongStringCodec: encode strings from 256 to 65535 characters.
  • Refactored ping system.

v1.0.3

07 Nov 20:01
e2ebb06

Choose a tag to compare

Added ping feature :

//server.js

// Ping clients every 30 seconds (used to keep connection alive)
new Server(8000, 'localhost', new JsonEncoder(), 30);