Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
545 views
in Technique[技术] by (71.8m points)

discord.js http request/status

I have a question. How do I check the status of a website?

What do I need? I just want to code the command /status. As soon as a user types this command, the bot should send a embed with the following text: Website-Status: ONLINE/OFFLINE Server-Status: ONLINE/OFFLINE

I need help :D

question from:https://stackoverflow.com/questions/65600460/discord-js-http-request-status

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Using the ping module on npm, you can do this easily.

const { sys } = require('ping');
sys.probe('HOSTNAME / IP', (isAlive) => {
    if(isAlive) {
        // Code if true.
    } else {
        // Code if false.
    }
});

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...