Test bpm install chalk

This commit is contained in:
danbulant 2020-02-21 17:04:19 +01:00
parent 94ea018158
commit cb34fb473b
2 changed files with 4 additions and 2 deletions

View file

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

View file

@ -11,6 +11,7 @@
"author": "",
"license": "ISC",
"dependencies": {
"got": "^10.5.7"
"got": "^10.5.7",
"chalk": "^3.0.0"
}
}