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.

JSTime supports the --hot flag to run a file with hot reloading enabled. When any module or file changes, JSTime re-runs the file.
jstime --hot run index.ts

JSTime detects when you are running an HTTP server with JSTime.serve(). It reloads your fetch handler when source files change, without restarting the jstime process. This makes hot reloads nearly instantaneous.
JSTime.serve({
  port: 3000,
  fetch(req) {
    return new Response(`Hello world`);
  },
});