New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

iirc

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

iirc

Modular Node.js IRC Client

latest
Source
npmnpm
Version
0.0.2
Version published
Maintainers
1
Created
Source

#IIRC

IIRC is a simple, modular Node.js IRC client.

Circle CI

###Details

IIRC was built with a purpose in mind: Hooking an API into IRC for notifications. CI/CD service IRC notifications can be pretty spammy, and also lacking in depth, functionality, and customization. IIRC was created to solve this (nitpicky, minor) problem. Simply pull IIRC into any web server and you've got an instant webhook for ultra customizable notifications. IIRC uses Node's built-in modules, so there's no need to worry about code bloat.

###Usage

In its simplest form, IIRC by default connects to Freenode:

var iirc = require('iirc');

client.on('message', function(message) {
	iirc.send('Received message: ' + message, '##iirc');
});

But of course you can specify a variety of configuration options:

var iirc = require('iirc').config({
	channel: "##iirc",
	host: "irc.example.com",
	port: 6697,
	ssl: true
});
client.on('message', function(message) {
	iirc.send('Received message: ' + message);
});

Keywords

irc

FAQs

Package last updated on 11 Oct 2015

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