https://github.com/avraammavridis/dom-to-svg-wasm
Convert a dom node to an svg image.
https://github.com/avraammavridis/dom-to-svg-wasm
Last synced: 6 months ago
JSON representation
Convert a dom node to an svg image.
- Host: GitHub
- URL: https://github.com/avraammavridis/dom-to-svg-wasm
- Owner: AvraamMavridis
- Created: 2018-12-15T13:55:37.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-22T12:19:02.000Z (almost 7 years ago)
- Last Synced: 2025-03-30T06:02:08.245Z (7 months ago)
- Language: Rust
- Size: 68.4 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#### Rust
```bash
curl https://sh.rustup.rs -sSf | shrustup default nightly
```Setup
```
rustup target add wasm32-unknown-unknown
cargo +nightly install wasm-bindgen-cli
``````
npm install
```Build `wasm` module:
```
cargo build --target wasm32-unknown-unknown
```Running FE:
```
npm run debug-buildnpm run serve
```