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 implements the Web-standard fetch API for sending HTTP requests. To send a simple GET request to a URL:
const response = await fetch("https://jstime.dev");
const html = await response.text(); // HTML string

To send a POST request to an API endpoint.
const response = await fetch("https://jstime.dev/api", {
  method: "POST",
  body: JSON.stringify({ message: "Hello from JSTime!" }),
  headers: { "Content-Type": "application/json" },
});

const body = await response.json();