0.0.2 |
|
---|---|
0.0.1 |
|
#19 in #skeleton
65KB
基于 https://github.com/rustwasm/wasm-pack-template.git
安装
此项目使用wasm-build和webpack-dev-server一起提供由称为CWF的语法编译的wasm二进制文件的服务。
要安装,您需要
然后
git clone https://github.com/thisminute/create-cwf-app.git
对于Windows用户,在根目录下运行
rustup toolchain install stable-x86_64-pc-windows-gnu
rustup default stable-x86_64-pc-windows-gnu
然后
cd create-cwf-app/www # npm stuff is in the www directory
npm run prod:clean # will run wasm-pack and npm install
npm start # opens a new browser tab in watch mode for the binary!
用法
所有代码都放在./cwf
目录下的.cwf文件中。示例文件
div {
text: hello;
}
span {
text: world;
}
表示
<div>
hello
</div>
<span>
world
</span>
依赖关系
~10MB
~196K SLoC