Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
This repository was archived by the owner on Feb 21, 2022. It is now read-only.

Node.js webhook vote listener

License

NotificationsYou must be signed in to change notification settings

DiscordBoats/webhooks-node

Repository files navigation

The website this module is for has shutdown.

Laffey

🏢| Webhook handler fordiscord.boats

Example

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 /\

Express Example

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'));

License

laffey is released under the MIT License. Readhere for more information.


[8]ページ先頭

©2009-2025 Movatter.jp