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 current environment variables can be accessed via process.env.
process.env.API_TOKEN; // => "secret"

JSTime also exposes these variables via JSTime.env, which is a simple alias of process.env.
JSTime.env.API_TOKEN; // => "secret"

To print all currently-set environment variables to the command line, run jstime run env. This is useful for debugging.
$ jstime run env
BAZ=stuff
FOOBAR=aaaaaa
<lots more lines>

See Docs > Runtime > Environment variables for more information on using environment variables with JSTime.