Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
A typed IRC client library for node
Based on irc-upd. Includes irc color decoding based on irc-colors.js
npm install @ctrl/irc
import { IrcClient } from '@ctrl/irc';
const client = new IrcClient('irc.yourserver.com', 'myNick', {
channels: [],
port: 7000,
secure: true,
});
client.connect();
Join a channel
client.join('#yourchannel yourpass');
Leave a channel
client.part('#yourchannel');
Send a message
// To channel
client.say('#yourchannel', 'hello');
// To user
client.say('nonbeliever', 'sup');
With typescript 4.1 template strings feature events can be fully typed.
// (from, message) parameters are typed via template strings matching `message#${string}`
client.addListener('message#yourchannel', (from, message) => {
console.log(from + ' => #yourchannel: ' + message);
});
Debugging - subscribe to the raw messages and see what events are being parsed and re-emitted
client.on('raw', message => {
console.log(message);
});
FAQs
Node irc client in TypeScript
We found that @ctrl/irc demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.