Socket
Book a DemoInstallSign in
Socket

slate-irc-parser

Package Overview
Dependencies
Maintainers
2
Versions
12
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

latest
Source
npmnpm
Version
0.1.9
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.

MIT License

Keywords

irc

FAQs

Package last updated on 14 Jan 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