Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pest-parser/site
This repo contains the source code for https://pest.rs
https://github.com/pest-parser/site
parser pest rust wasm webassembly
Last synced: 2 months ago
JSON representation
This repo contains the source code for https://pest.rs
- Host: GitHub
- URL: https://github.com/pest-parser/site
- Owner: pest-parser
- License: apache-2.0
- Created: 2018-01-27T00:39:13.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-09-12T02:27:44.000Z (5 months ago)
- Last Synced: 2024-10-29T14:22:29.622Z (3 months ago)
- Topics: parser, pest, rust, wasm, webassembly
- Language: CSS
- Homepage: http://pest.rs/
- Size: 890 KB
- Stars: 13
- Watchers: 7
- Forks: 16
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# pest.rs
This repo contains the source code for https://pest.rs
## Development Guide
This project uses the following tools:
- [Task](https://taskfile.dev/)
- [wasm-pack](https://rustwasm.github.io/wasm-pack/)
- [mdBook](https://rust-lang.github.io/mdBook/)
- [pnpm](https://pnpm.io)The task file automatically installs dependencies, builds the book, and builds the internal pest-vm web-binding crate.
Start Parcel development server:
```bash
task dev
```Then visit http://localhost:1234
If you want to build the static site, run the main build task:
```bash
task
```Then go visit the `/dist` folder.