mirror of
https://github.com/iamlukethedev/Claw3D.git
synced 2026-07-28 06:22:15 +00:00
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();
|