Launch Week Day 4: Introducing Data Exports.Learn More
Socket
Book a DemoSign in
Socket

slate-irc-parser

Package Overview
Dependencies
Maintainers
2
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

slate-irc-parser

Streaming IRC message parser

Source
npmnpm
Version
0.1.10-alpha.0
Version published
Maintainers
2
Created
Source

slate-irc-parser version downloads

Streaming IRC message parser.

pnpm add -D slate-irc-parser
import Parser from "slate-irc-parser";
import { connect } from "node:tls";

const parser = new Parser();
parser.on("message", (msg) => {
  console.log();
  console.log(msg);
});

const client = connect({
  port: 6697,
  host: "irc.libera.chat",
});
client.pipe(parser);

To see more examples, please check the examples directory.

 

slate-irc-parser is primarily distributed under the terms of the MIT license. See COPYRIGHT for details.

Keywords

chat

FAQs

Package last updated on 16 Feb 2026

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