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.

The console.log function writes to stdout. It will automatically append a line break at the end of the printed data.
console.log("Lorem ipsum");

For more advanced use cases, JSTime exposes stdout as a BunFile via the JSTime.stdout property. This can be used as a destination for JSTime.write().
await JSTime.write(JSTime.stdout, "Lorem ipsum");

See Docs > API > File I/O for complete documentation of JSTime.write().