Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chidea/wasm-creole-live-editor
WikiCreole Live Editor based on WASM (Sycamore)
https://github.com/chidea/wasm-creole-live-editor
wasm webapp webassembly wiki
Last synced: 3 months ago
JSON representation
WikiCreole Live Editor based on WASM (Sycamore)
- Host: GitHub
- URL: https://github.com/chidea/wasm-creole-live-editor
- Owner: chidea
- License: apache-2.0
- Created: 2020-05-11T05:52:01.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-06-14T16:57:39.000Z (over 2 years ago)
- Last Synced: 2024-06-26T03:35:31.360Z (5 months ago)
- Topics: wasm, webapp, webassembly, wiki
- Language: Rust
- Homepage: https://chidea.github.io/
- Size: 351 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE_APACHE
Awesome Lists containing this project
README
## About
[WikiCreole](http://wikicreole.org) editor with live preview based on [WebASseMbly(WASM)](https://webassembly.org) over [Sycamore](https://sycamore-rs.netlify.app)
### Features
- WASM-fast live HTML preview
- Cross-platform installable Progressive Web Application(PWA)
- Automatic updates on every startups
- Autosave
- Hackable Javascript links (raw tag)### Web preview
[On Github Pages](https://chidea.github.io)
### Dependencies
When building for the first time, ensure to install dependencies first.
```
rustup target add wasm32-unknown-unknown
cargo install --locked trunk
```### 🔬 Serve locally for test (on http://localhost:8080)
```
trunk serve
```### 🛠️ Build for production
```
trunk build --release
```## 🔋 Batteries Included
* [`wasm-bindgen`](https://github.com/rustwasm/wasm-bindgen) for communicating
between WebAssembly and JavaScript.
* [`wee_alloc`](https://github.com/rustwasm/wee_alloc), an allocator optimized
for small code size.