├── .eslintrc.json ├── .gitignore ├── .npmignore ├── LICENSE ├── docs ├── advanced.md ├── assets │ ├── NoResolveUrl.png │ ├── customEmoji.png │ ├── exampleMsg.png │ └── resolveUrl.png ├── customDatabase.md ├── events.md └── gettingStarted.md ├── package.json ├── readme.md ├── src ├── bases │ └── Starboard.js ├── constants.js ├── handlers │ ├── messageDelete.js │ ├── raw.js │ ├── reactionAdd.js │ ├── reactionRemove.js │ └── reactionRemoveAll.js └── index.js └── typings └── index.d.ts /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-starboards/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .vscode 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-starboards/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-starboards/HEAD/LICENSE -------------------------------------------------------------------------------- /docs/advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-starboards/HEAD/docs/advanced.md -------------------------------------------------------------------------------- /docs/assets/NoResolveUrl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-starboards/HEAD/docs/assets/NoResolveUrl.png -------------------------------------------------------------------------------- /docs/assets/customEmoji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-starboards/HEAD/docs/assets/customEmoji.png -------------------------------------------------------------------------------- /docs/assets/exampleMsg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-starboards/HEAD/docs/assets/exampleMsg.png -------------------------------------------------------------------------------- /docs/assets/resolveUrl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-starboards/HEAD/docs/assets/resolveUrl.png -------------------------------------------------------------------------------- /docs/customDatabase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-starboards/HEAD/docs/customDatabase.md -------------------------------------------------------------------------------- /docs/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-starboards/HEAD/docs/events.md -------------------------------------------------------------------------------- /docs/gettingStarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-starboards/HEAD/docs/gettingStarted.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-starboards/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-starboards/HEAD/readme.md -------------------------------------------------------------------------------- /src/bases/Starboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-starboards/HEAD/src/bases/Starboard.js -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-starboards/HEAD/src/constants.js -------------------------------------------------------------------------------- /src/handlers/messageDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-starboards/HEAD/src/handlers/messageDelete.js -------------------------------------------------------------------------------- /src/handlers/raw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-starboards/HEAD/src/handlers/raw.js -------------------------------------------------------------------------------- /src/handlers/reactionAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-starboards/HEAD/src/handlers/reactionAdd.js -------------------------------------------------------------------------------- /src/handlers/reactionRemove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-starboards/HEAD/src/handlers/reactionRemove.js -------------------------------------------------------------------------------- /src/handlers/reactionRemoveAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-starboards/HEAD/src/handlers/reactionRemoveAll.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-starboards/HEAD/src/index.js -------------------------------------------------------------------------------- /typings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-starboards/HEAD/typings/index.d.ts --------------------------------------------------------------------------------