import {createServer} from "node:http"
const server = createServer((req, res) => {
res.writeHead(200, { "Content-Type": "application/json" })
res.end(JSON.stringify({
name: "Yukie Muhammad Billal",
hobby: ["Photography", "Games", "Space", "Listen to music"],
age: 20,
gender: "♂️",
website: "<a target='_blank'>https://yukie.site</a>"
}))
})
server.listen(3000, "127.0.0.1", () => console.log("hi!"))