Skip to content

Commit

Permalink
docs: added missing link to wasm website (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mazwak authored Jan 17, 2022
1 parent 2d1ca2d commit a0dad42
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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

0 comments on commit a0dad42

Please sign in to comment.