creesch / discordIRCd

A node.js script that allows you to connect to discord with your irc client.
Apache License 2.0
115 stars 21 forks source link

Hangs forever #36

Closed penny64 closed 6 years ago

penny64 commented 6 years ago

With the config

global.configuration = {
    DEBUG: false,
    showOfflineUsers: true, // When true all users will always be shown. Offline users will be shown as away on clients that support away-notify.
    discordToken: 'my token is here',
    tlsEnabled: false,
    tlsOptions: {
      keyPath: '/path/to/key.pem',
      certPath: '/path/to/cert.pem'
    },
    handleCode: true,
    githubToken: 'also here',
    ircServer: {
        listenPort: 6667,
        hostname: '127.0.0.1',
        username: 'witheld'
    }
};

Running "node server.js" silently hangs forever

creesch commented 6 years ago

Did you try to connect to it with an irc client and what was the result of that? Also, it is silent because you have debug mode disabled.