mirror of
https://github.com/danbulant/bpm
synced 2026-05-20 04:38:57 +00:00
6 lines
No EOL
153 B
JavaScript
6 lines
No EOL
153 B
JavaScript
const got = require("got");
|
|
|
|
console.log("Trying to make request...");
|
|
got("http://google.com").then((r) => {
|
|
console.log("Got request working!");
|
|
}) |