4fa4f13558
Co-authored-by: iamlukethedev <iamlukethedev@users.noreply.github.com>
12 lines
277 B
JavaScript
12 lines
277 B
JavaScript
async function main() {
|
|
const { get } = await import("node:https");
|
|
get(
|
|
"https://raw.githubusercontent.com/mrdoob/three.js/master/examples/textures/planets/earth_atmos_2048.jpg",
|
|
(res) => {
|
|
console.log("Status:", res.statusCode);
|
|
},
|
|
);
|
|
}
|
|
|
|
void main();
|