#skeleton #web #default #github #wasm-pack #com #cwf

已删除 create-cwf-app

CWF Web应用的骨架

0.0.2 2020年7月19日
0.0.1 2020年7月9日

#19 in #skeleton

MIT 许可证

65KB

基于 https://github.com/rustwasm/wasm-pack-template.git

安装

此项目使用wasm-build和webpack-dev-server一起提供由称为CWF的语法编译的wasm二进制文件的服务。

要安装,您需要

  1. rustc/cargo
  2. node/npm
  3. wasm-pack

然后

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