bpm/test/index.js
2020-02-21 17:04:19 +01:00

7 lines
No EOL
197 B
JavaScript

const got = require("got");
const chalk = require("chalk");
console.log("Trying to make request...");
got("http://google.com").then((r) => {
console.log(chalk.blue("Got request working!"));
})