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

Add missing link to WebAssembly website #117

Merged
merged 1 commit into from
Jan 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/0.2.x/en-US/hello-world.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Perseus is a _very_ complex system, and, if you had to write all that complexity
When you run `perseus serve`, the `.perseus/` directory is created and added to your `.gitignore`, and then three stages occur in parallel (they're shown in your terminal):

- _🔨 Generating your app_ -- here, your app is built to a series of static files in `.perseus/dist/static`, which makes your app lightning-fast (your app's pages are ready before it's even been deployed, which is called _static site generation_, or SSG)
- _🏗️ Building your app to Wasm_ -- here, your app is built to [WebAssembly](), which is what lets a low-level programming language like Rust run in the browser
- _🏗️ Building your app to Wasm_ -- here, your app is built to [WebAssembly](https://webassembly.org), which is what lets a low-level programming language like Rust run in the browser
- _📡 Building server_ -- here, Perseus builds its internal server based on your code, and prepares to serve your app

The first time you run this command, it can take quite a while to get everything ready, but after that it'll be really fast. And, if you haven't changed any code (_at all_) since you last ran it, you can run `perseus serve --no-build` to run the server basically instantaneously.
Expand Down
2 changes: 1 addition & 1 deletion docs/0.3.x/en-US/hello-world.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Perseus is a _very_ complex system, and, if you had to write all that complexity
When you run `perseus serve`, the `.perseus/` directory is created and added to your `.gitignore`, and then three stages occur in parallel (they're shown in your terminal):

- _🔨 Generating your app_ -- here, your app is built to a series of static files in `.perseus/dist/static`, which makes your app lightning-fast (your app's pages are ready before it's even been deployed, which is called _static site generation_, or SSG)
- _🏗️ Building your app to Wasm_ -- here, your app is built to [WebAssembly](), which is what lets a low-level programming language like Rust run in the browser
- _🏗️ Building your app to Wasm_ -- here, your app is built to [WebAssembly](https://webassembly.org), which is what lets a low-level programming language like Rust run in the browser
- _📡 Building server_ -- here, Perseus builds its internal server based on your code, and prepares to serve your app

The first time you run this command, it can take quite a while to get everything ready, but after that it'll be really fast. And, if you haven't changed any code (_at all_) since you last ran it, you can run `perseus serve --no-build` to run the server basically instantaneously.
Expand Down
2 changes: 1 addition & 1 deletion docs/next/en-US/hello-world.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Perseus is a _very_ complex system, and, if you had to write all that complexity
When you run `perseus serve`, the `.perseus/` directory is created and added to your `.gitignore`, and then three stages occur in parallel (they're shown in your terminal):

- _🔨 Generating your app_ -- here, your app is built to a series of static files in `.perseus/dist/static`, which makes your app lightning-fast (your app's pages are ready before it's even been deployed, which is called _static site generation_, or SSG)
- _🏗️ Building your app to Wasm_ -- here, your app is built to [WebAssembly](), which is what lets a low-level programming language like Rust run in the browser
- _🏗️ Building your app to Wasm_ -- here, your app is built to [WebAssembly](https://webassembly.org), which is what lets a low-level programming language like Rust run in the browser
- _📡 Building server_ -- here, Perseus builds its internal server based on your code, and prepares to serve your app

The first time you run this command, it can take quite a while to get everything ready, but after that it'll be really fast. And, if you haven't changed any code (_at all_) since you last ran it, you can run `perseus serve --no-build` to run the server basically instantaneously.
Expand Down