Compare commits

...

2 commits

Author SHA1 Message Date
d5886843c6
Better README 2021-01-25 14:48:21 -05:00
3b998f16a8
Fix package dependencies 2021-01-25 14:42:10 -05:00
2 changed files with 16 additions and 2 deletions

View file

@ -1,6 +1,19 @@
# brainlet-irc
Brainlet to IRC translation layer
Unofficial Brainlet to IRC translation layer
**WARNING: You should not expose the IRC server to the public! There are multiple known
security issues in the dependencies of the module hosting the actual IRC server.**
# Installing
```bash
git clone --depth=1 --recurse-submodules https://git.hippoz.xyz/hiimgoodpack/brainlet-irc.git
cd brainlet-irc
npm install
pushd ircd.js; npm install; popd
pushd brainlet-lib; npm install; popd
```
# Technical notes

View file

@ -13,6 +13,7 @@
"author": "",
"license": "GPL-3.0-or-later",
"dependencies": {
"irc": "^0.5.0"
"irc": "0.5.0",
"replaceall": "^0.1.6"
}
}