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

Categories

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

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

1 Answer

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.
    }
});

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...