Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork61
ast-grep/ast-grep.github.io
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
ast-grep(sg) is a lightning fast and user friendly tool for code searching, linting, rewriting at large scale.
This is the website source for ast-grep!
Unfortunately wasm-pack does not support compiling C dependency with stdlib.We have to use emcc.
We have to use web-tree-sitter
To setup:
- Install wasm-packhttps://rustwasm.github.io/wasm-pack/, pnpm, cargo
- Clone the repo
wasm-pack build --target web
. This will build the wasm inpkg
folderpnpm install
pnpm dev
- visit localhost:5173. This will make vitepress cache the dependency.
- Run the following script, which is needed for dev-time wasm bundling:
cd website/.vitepress/cache/depsln -s ../../../../pkg/ast_grep_wasm_bg.wasmcd ../../../..
You need to upgrade tree-sitter to the latest version.
You also need to copy the tree-sitter.wasm to the public directory because vite's building convention.
You will usually have weird error messages liketree-sitter.wasm
is not foundor having wrongLinkError
of undefined methods likeexit
.
emcc setup is not used any more
~~
- Installemcc
rustup target add wasm32-unknown-emscripten
- cargo install -f wasm-bindgen-cli
- EMCC_CFLAGS="-s ERROR_ON_UNDEFINED_SYMBOLS=0 --no-entry" cargo build --target wasm32-unknown-emscripten
- wasm-bindgen --target web ../../target/wasm32-unknown-emscripten/debug/ast_grep_wasm.wasm --out-dir pkg
https://github.com/MolotovCherry/tree-sitter-wasmrustwasm/wasm-pack#741https://stackoverflow.com/questions/67474533/error-in-compiling-rust-into-webassembly-using-emscripten-on-windowshttps://github.com/rustwasm/wasm-pack/blob/master/src/command/build.rs~~
It requires tree-sitter.wasm and tree-sitter-{lang}.wasm available in public directory.
Language specific wasm must be built with the same emcc version of the tree-sitter.wasm.
Mismatching emcc version will raise RuntimeError.
About
Website for ast-grep!
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
Sponsor this project
Uh oh!
There was an error while loading.Please reload this page.
Packages0
Uh oh!
There was an error while loading.Please reload this page.