Nova IRC
GitHub
  • Introduction
  • Get Started
    • 💻How to Install
    • 🎨Available Colors
  • Methods
    • 🟪setCredentials
    • 🟪connect
    • 🟪joinChannel
    • 🟪sendMessage
    • 🟪part
    • 🟪sendRaw
    • 🟪kick
    • 🟪ban
    • 🟪banlist
    • 🟪whois
  • Event Listeners
    • 🟦message
    • 🟦connected
    • 🟦join
    • 🟦kick
    • 🟦+mode
    • 🟦-mode
    • 🟦quit
    • 🟦notice
    • 🟦names
    • 🟦unkown
    • 🟦part
    • 🟦motd
    • 🟦channelMessage
    • 🟦directMessage
    • 🟦ping
    • 🟦error
    • 🟦disconnected
    • 🟦raw
    • 🟦banlist
    • 🟦botKicked
Powered by GitBook
On this page
  1. Get Started

How to Install

Installing Nova IRC is quick and easy. Follow these steps to get started:

1️⃣ Install via npm

Run the following command in your project directory:

npm install nova-irc

2️⃣ Import and Initialize

Require the library and create a new instance of the IRC client:

const nova = require('nova-irc');
const bot = new nova ();

Now you're ready to connect to an IRC server and start building your bot! 🚀

PreviousIntroductionNextAvailable Colors

Last updated 4 months ago

💻