I've needed to debug some projects from the CLI, so I created a handy little script to let me do just that. Here it is!
Created
October 12, 2022 03:44
-
-
Save RedstoneWizard08/72e303d490fd8901b02adc9eff7a5925 to your computer and use it in GitHub Desktop.
How to view JavaScript Console output in the linux (or anything that supports TypeScript) console:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { blue, cyan, green, magenta, red, yellow } from "colorette"; | |
import puppeteer from "puppeteer"; | |
const main = async () => { | |
const browser = await puppeteer.launch(); | |
const page = await browser.newPage(); | |
page.on("console", (message) => { | |
const type = message.type().substr(0, 3).toUpperCase(); | |
const colors: { [key: string]: (text: string) => string } = { | |
LOG: (text) => text, | |
ERR: red, | |
WAR: yellow, | |
INF: cyan, | |
}; | |
const color = colors[type] || blue; | |
console.log(color(`${type} ${message.text()}`)); | |
}); | |
page.on("pageerror", ({ message }) => console.log(red(message))); | |
page.on( | |
"response", | |
(response) => | |
!response.status().toString().startsWith("2") && | |
!response.status().toString().startsWith("3") && | |
console.log(green(`${response.status()} ${response.url()}`)) | |
); | |
page.on("requestfailed", (request) => | |
console.log(magenta(`${request.failure()?.errorText} ${request.url()}`)) | |
); | |
await page.goto(process.argv[2]); | |
await new Promise((r) => setTimeout(r, 999999999)); | |
await browser.close(); | |
}; | |
main(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment