https://github.com/zephraph/wasm-to-dts
https://github.com/zephraph/wasm-to-dts
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/zephraph/wasm-to-dts
- Owner: zephraph
- License: mit
- Created: 2024-12-07T15:40:53.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-01-03T01:14:20.000Z (4 months ago)
- Last Synced: 2025-03-27T15:21:26.764Z (27 days ago)
- Language: Rust
- Homepage:
- Size: 46.9 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# wasm-to-dts
This is a standalone port of [Deno](https://deno.land)'s `wasm_module_to_dts` compiled to wasm. The idea is to be able to load this in deno/the browser/etc and give it a WASM module and get a typescript .d.ts file out the other side.
This was built as a part of [Side Project Saturdays](https://just-be.dev/e/side-project-saturdays)
## Building
This project uses [`mise`](https://mise.jdx.dev/installing-mise.html) to manage dependencies and for building.
To setup the project:
```
mise install
```To build, run:
```
mise run build
```