Go to file
Hri7566 695605c9e5 add commands 2022-02-25 16:49:35 -05:00
.vscode vsc config 2022-02-24 20:12:16 -05:00
js add commands 2022-02-25 16:49:35 -05:00
src add commands 2022-02-25 16:49:35 -05:00
tests add tests 2022-02-25 16:48:56 -05:00
ts update js 2022-02-23 20:51:06 -05:00
.gitignore update gitignore 2022-02-23 20:49:45 -05:00
Makefile add logger 2022-02-25 16:48:45 -05:00
README.md add readme 2022-02-25 16:48:51 -05:00
jest.config.js add jest config for ts 2022-02-25 16:48:33 -05:00
package-lock.json init 2022-02-11 20:33:46 -05:00
package.json update deps 2022-02-25 16:49:04 -05:00
tsconfig.json update tsconfig 2022-02-25 16:49:18 -05:00
yarn.lock lockfile auto 2022-02-25 16:49:23 -05:00

README.md

7566

This project is (yet another rewrite of) 7566, a humble chat bot that supports multiple platforms, including Discord and Multiplayer Piano (and its various clones, including my own).

Building

This project is programmed in JavaScript and C, so you'll need to have Node.js and a C compiler to build it. This project hasn't been tested on Windows, but it works fine on Linux. If you find a way to compile it for other platforms, you are free to submit a pull request.

Note

The scripts in package.json require Yarn.

# using yarn:
$ yarn build # same as yarn make && npx tsc

# directly:
$ gcc -shared -fPIC -o ./bin/7566.so ./src/7566.c
$ tsc

Usage

WIP

Contributing

Pull requests are welcome. Please make sure to test your changes before merging.