0.1.0 • Published 2 months ago

@socket.io/devalue-parser v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

socket.io-parser

Build Status

A fork of the default socket.io encoder and decoder, which uses devalue over the vanilla JSON object, for stringifying and parsing JavaScript objects. This offers many improvements over the default parser, such as support for dates, maps, sets, regular expressions, undefined, custom classes and more. Check out devalue for details.

Usage

Server

import * as parser from "@socket.io/devalue-parser";
import { Server } from "socket.io";

const io = new Server({
  parser
});

Client

import * as parser from "@socket.io/devalue-parser";
import { io } from "socket.io-client";

const socket = io({
  parser
});

License

MIT

0.1.0

2 months ago