dependabot[bot] 05093bbe4b Bump express from 4.17.1 to 4.18.1
Bumps [express](https://github.com/expressjs/express) from 4.17.1 to 4.18.1.
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/master/History.md)
- [Commits](https://github.com/expressjs/express/compare/4.17.1...4.18.1)

---
updated-dependencies:
- dependency-name: express
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-05-11 19:20:24 +02:00
2022-05-11 18:28:58 +02:00
2021-11-28 19:51:40 +01:00
2021-07-01 20:08:56 +02:00
2019-12-02 08:56:42 +01:00
2021-11-28 19:51:40 +01:00
2021-07-02 08:04:44 +02:00
2019-09-06 07:57:09 +02:00

Beerchat proxy application

Relay for minetest-ingame / IRC and Discord

Local Testing

curl -X POST \
 -H "Content-Type: application/json" \
 -d '{"channel":"main","playername":"somedude","message":"rant about lag!"}' \
 http://127.0.0.1:8080/

Configuration

beerchat.js

module.exports = {
  "debug": true,

  "remotes": [{
    "name": "IRC",
    "type": "irc",
		"debug": true,
    "host": "chat.freenode.net",
    "username": "pandorabot_test",
    "password": "my-password",
		"system_channel": "main",
    "channels": {
      "main": "pandorabox-test"
    }
  },{
    "name": "Discord",
    "type": "discord",
		"debug": true,
		"token": "the-discord-token",
		"system_channel": "main",
    "channels": {
      "main": "test"
    }
  }]
};

Starting

npm install
npm start
Description
No description provided
Readme 239 KiB
Languages
JavaScript 86.7%
Shell 8.4%
Lua 3.5%
Dockerfile 1.4%