dependabot[bot]
fe688de4aa
Bump irc-framework from 4.9.0 to 4.11.0
Bumps [irc-framework](https://github.com/kiwiirc/irc-framework) from 4.9.0 to 4.11.0. - [Release notes](https://github.com/kiwiirc/irc-framework/releases) - [Commits](https://github.com/kiwiirc/irc-framework/compare/v4.9.0...v4.11.0) --- updated-dependencies: - dependency-name: irc-framework dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
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
Languages
JavaScript
86.7%
Shell
8.4%
Lua
3.5%
Dockerfile
1.4%