You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/pages/reference/packages.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: "Official packages"
3
3
description: "The ready-made modules maintained alongside Edge Python, what they are, where they live, and how to import them."
4
4
---
5
5
6
-
Edge Python ships no bundled stdlib (see [What it is](/getting-started/what-it-is)), every module is external. This page is the catalog of the **official, ready-to-use packages** maintained alongside the compiler. You don't have to write these yourself, import them and go. To build your own, see [Writing modules](/reference/writing-modules).
6
+
Edge Python ships no bundled stdlib (see [What it is](/getting-started/what-it-is)); every module is external. This page is the catalog of the **official, ready-to-use packages** maintained alongside the compiler. You don't have to write these yourself: import them and go. To build your own, see [Writing modules](/reference/writing-modules).
7
7
8
8
There are two families, matching two of the three [delivery paths](/reference/writing-modules):
9
9
@@ -12,11 +12,11 @@ There are two families, matching two of the three [delivery paths](/reference/wr
12
12
|**Standard packages**|[`std/`](https://github.com/dylan-sutton-chavez/edge-python/tree/main/std)|`.wasm` (Rust) | Inside the WASM sandbox, any host |[Path A](/reference/writing-modules#path-a-wasm-module-by-url)|
Standard packages are host-agnostic (they run wherever WASM runs). Host libraries are browser-only, they reach `document` / `window` / `localStorage`, surfaces that don't exist in a non-browser host.
15
+
Standard packages are host-agnostic (they run wherever WASM runs). Host libraries are browser-only: they reach `document` / `window` / `localStorage`, surfaces that don't exist in a non-browser host.
16
16
17
17
## Standard packages
18
18
19
-
Language-agnostic `.wasm` plugins over the [WASM module ABI](/reference/wasm-abi). Import by bare name (the browser runtime resolves the official ones by default, see [Defaults](#defaults)), by URL, or via a `packages.json` alias; the host fetches the `.wasm` and treats its exports as native bindings.
19
+
Language-agnostic `.wasm` plugins over the [WASM module ABI](/reference/wasm-abi). Import by bare name (the browser runtime resolves the official ones by default; see [Defaults](#defaults)), by URL, or via a `packages.json` alias; the host fetches the `.wasm` and treats its exports as native bindings.
0 commit comments