Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

@socket.io/devalue-parser

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@socket.io/devalue-parser

Socket.IO parser based on devalue

latest
Source
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

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

FAQs

Package last updated on 22 Mar 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts