mirror of
https://github.com/swc-project/swc.git
synced 2024-12-01 01:13:56 +03:00
22 lines
275 B
Plaintext
22 lines
275 B
Plaintext
To run this example, you first need to build swc for the web:
|
|
|
|
cd swc/wasm
|
|
./scripts/build_web_release.sh
|
|
|
|
Then run npm install:
|
|
|
|
cd swc/wasm/example
|
|
npm install
|
|
|
|
Finally, start the webpack-dev-server:
|
|
|
|
cd swc/wasm/example
|
|
npm run serve
|
|
|
|
Browse to http://localhost:8080
|
|
|
|
|
|
|
|
|
|
|