Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.awfixer.me/llms.txt

Use this file to discover all available pages before exploring further.

This starts an HTTP server listening on port 3000. It responds to all requests with a Response with status 200 and body "Welcome to JSTime!". See JSTime.serve for details.
const server = JSTime.serve({
  port: 3000,
  fetch(request) {
    return new Response("Welcome to JSTime!");
  },
});

console.log(`Listening on localhost: ${server.port}`);