mirror of
https://github.com/danbulant/bpm
synced 2026-05-26 05:11:59 +00:00
7 lines
No EOL
197 B
JavaScript
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!"));
|
|
}) |