- New Proejct in Comming...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Author: Carlos Vasili (@cvasilivg) | |
* Program: Send alerts from CloudRadar.io to Discord with webhook | |
*/ | |
// Require express, body-parser and discord.js | |
// npm i express body-parser discord.js | |
const express = require('express'); | |
const bodyParser = require('body-parser'); | |
const discord = require('discord.js'); |