Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

github.com/walkergriggs/carousel

Package Overview
Dependencies
Alerts
File Explorer
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/walkergriggs/carousel

  • v0.0.0-20211229062132-dfb818a34e34
  • Source
  • Go
  • Socket score

Version published
Created
Source

Carousel is a modern IRC bouncer written in Go. It's not production ready in the slightest, so take everything with a grain of salt.

Features

  • Connect to multiple networks
  • SSL connections
  • Buffer messages when disconnect
  • External state store
  • Remote CLI connection

Configuration

First, add a user. This password will be hashed and stored to authenticate with Carousel, not any network.

crsl add user --username user --password pass

Then, add a network to the user.

crsl add network libera --address irc.libera.chat --port 6667 --user user

Finally, set your ident for that network. Only the nickname is required; the password will default empty and the username / realname will match your nick.

crls set ident --user user \
    --network libera
    --nickname nick
    --username user
    --realname real
    --password pass

You can also edit the configuration directly. It will look something like this:

{
    "Server": {
        "URI": "127.0.0.1:6667",
        "Verbose": true,
    },
    "Users": [
        {
            "Username": "user",
            "Password": "$2a$04$itD.ZqpW8spWradGqybbAu8asdfF8BrOfGmApUSJcPxo1e.v7A3AYp6",
            "Networks": [
                {
                    "Name": "libera",
                    "URI": "irc.libera.chat:6667",
                    "Ident": {
                        "Username": "user",
                        "Nickname": "nick",
                        "Realname": "name",
                        "Password": "pass"
                    },
                    "Channels": []
                }
            ]
        }
    ]
}

Setup

I've only tested with Weechat so far. To add the Carousel server...

/server add crsl 127.0.0.1/6667 -username=user/network -password=pass

FAQs

Package last updated on 29 Dec 2021

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc