mirror of
https://github.com/danbulant/bpm
synced 2026-06-17 13:31:13 +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!"));
|
|
}) |