Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: unify module pages #725

Merged
merged 16 commits into from
Sep 2, 2024
Merged
Prev Previous commit
Next Next commit
fix: fragment links
  • Loading branch information
marvinhagemeister committed Sep 2, 2024
commit 2f83a630a0ec3fcbb146213c4a08b2272cf023db
14 changes: 9 additions & 5 deletions runtime/manual/getting_started/setup_your_environment.md
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,8 @@ There are several environment variables which can impact the behavior of Deno:
specific certificate per TLS connection.
- `DENO_CERT` - load a certificate authority from a PEM encoded file. This
"overrides" the `--cert` option. See the
[Proxies](/runtime/manual/tools/env_variables) section for more information.
[Proxies](/runtime/manual/tools/env_variables#proxies) section for more
information.
- `DENO_DIR` - this will set the directory where cached information from the CLI
is stored. This includes items like cached remote modules, cached transpiled
modules, language server cache information and persisted data from local
Expand All @@ -429,17 +430,20 @@ There are several environment variables which can impact the behavior of Deno:
available.
- `DENO_WEBGPU_TRACE` - The directory to use for WebGPU traces.
- `HTTP_PROXY` - The proxy address to use for HTTP requests. See the
[Proxies](/runtime/manual/tools/env_variables) section for more information.
[Proxies](/runtime/manual/tools/env_variables#proxies) section for more
information.
- `HTTPS_PROXY` - The proxy address to use for HTTPS requests. See the
[Proxies](/runtime/manual/tools/env_variables) section for more information.
[Proxies](/runtime/manual/tools/env_variables#proxies) section for more
information.
- `NO_COLOR` - If set, this will prevent the Deno CLI from sending ANSI color
codes when writing to stdout and stderr. See the website
[https://no-color.org](https://no-color.org/) for more information on this _de
facto_ standard. The value of this flag can be accessed at runtime without
permission to read the environment variables by checking the value of
`Deno.noColor`.
- `NO_PROXY` - Indicates hosts which should bypass the proxy set in the other
environment variables. See the [Proxies](/runtime/manual/tools/env_variables)
section for more information.
environment variables. See the
[Proxies](/runtime/manual/tools/env_variables#proxies) section for more
information.
- `NPM_CONFIG_REGISTRY` - The npm registry to use when loading modules via
[npm specifiers](../node/npm_specifiers.md)