This repository was archived by the owner on Feb 21, 2022. It is now read-only.
- Notifications
You must be signed in to change notification settings - Fork4
Node.js webhook vote listener
License
NotificationsYou must be signed in to change notification settings
DiscordBoats/webhooks-node
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
The website this module is for has shutdown.
🏢| Webhook handler fordiscord.boats
const{ Server}=require('laffey');consthandler=newServer(7700,'/webhook',{token:'youshallnotpass'});handler.on('vote',(voter,bot)=>console.log(`${voter.username} has voted${bot.name}`)).on('listen',()=>console.log(`Listening on port${handler.port}`)).listen();// It listens and emits the listen event /\
const{express:laffey}=require('laffey');constexpress=require('express');constapp=express();app.use(express.json());app.use(laffey({callback:(error,bot,voter)=>{if(error)returnconsole.error(error);// vote logic is here},token:'any random token you wanna set',path:'/votes'}));app.listen(3000,()=>console.log('localhost:3000'));
laffey is released under the MIT License. Readhere for more information.
About
Node.js webhook vote listener
Topics
Resources
License
Stars
Watchers
Forks
Releases
No releases published