Skip to content

Commit 9893ccc

Browse files
docs: Explain CLI usage and include description for the epxlore section.
1 parent 80920fb commit 9893ccc

1 file changed

Lines changed: 17 additions & 6 deletions

File tree

docs/pages/getting-started/introduction.md

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,27 @@ description: "What Edge Python is and where to go next."
55

66
# Introduction
77

8-
Edge Python is a sandboxed Python subset compiled to a ~170 KB WebAssembly module —
9-
built in Rust to run on Cloudflare Workers, Fastly Compute, and the browser.
8+
Edge Python is a sandboxed Python subset compiled to a ~170 KB WebAssembly module — built in Rust to run on Cloudflare Workers, Fastly Compute, and the browser.
109

1110
## Explore
1211

13-
1. [Quickstart](/getting-started/quickstart)
14-
2. [The language](/language/syntax)
15-
3. [Reference](/reference/builtins)
16-
4. [Implementation](/implementation/design)
12+
1. [Quickstart](/getting-started/quickstart): Run your first Edge Python program in under a minute.
13+
2. [The language](/language/syntax): How to write a program?
14+
3. [Reference](/reference/builtins): All the builtin methods.
15+
4. [Implementation](/implementation/design): Compiler architecture, dispatch model, and runtime layout.
1716

1817
## Try it
1918

19+
### Use in the Browser:
20+
2021
Run Edge Python live in your browser at [demo.edgepython.com](https://demo.edgepython.com/).
22+
23+
### Download the Command Line Interface:
24+
25+
Insted you can download in your computer ([reference docs](https://github.com/dylan-sutton-chavez/edge-python/tree/main/cli)):
26+
27+
```bash
28+
curl -fsSL https://dylan-sutton-chavez.github.io/edge-python/install.sh | sh
29+
30+
edge -h # Explain all the commands
31+
```

0 commit comments

Comments
 (0)