rustwasm / deprecated_rust_wasm_template

Deprecated in favor of rustwasm/wasm-pack-template or rustwasm/rust-webpack-template

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DEPRECATED: Use rustwasm/wasm-pack-template for libraries and rustwasm/rust-webpack-template for webapps with webpack.

Rust πŸ¦€ and WebAssembly πŸ•Έ Template πŸ—

Build Status

This is a template to jump-start your Rust and WebAssembly project and let you hit the ground running.

πŸ› What's Inside?

  • βœ” The latest wasm-bindgen for light and seamless bidirectional communication between Rust and JavaScript. Import JavaScript things into Rust and export Rust things to JavaScript.

  • βœ” Boilerplate for builds, optimizing, and post-processing:

    • βœ” Generates the JS interface to your .wasm binary with the appropriate wasm-bindgen invocation.

    • βœ” Runs wasm-opt to shrink the .wasm binary's code size and also speed it up at runtime.

    • βœ” Bundles your JS with Webpack.

  • βœ” Serve your .wasm and JS locally with Webpack's dev-server.

  • βœ” Better debugging with Rust panics forwarded to console.error.

  • βœ” Optionally use wee_alloc as the global allocator, to help keep your code size footprint small.

  • βœ” Boilerplate for writing #[test]s and #[bench]es for the native target.

  • βœ” Travis CI integration already set up. Make sure you never break your tests or your WebAssembly builds.

🀸 Using this Template

First, install cargo-generate:

cargo install cargo-generate

Second, generate a new project with this repository as a template:

cargo-generate --git https://github.com/rustwasm/rust_wasm_template.git

Answer the prompts and then you should be good to go! Check out your new CONTRIBUTING.md for details on building and project organization.

Enabling Travis CI

The Travis CI configuration is 100% pre-configured, and all you need to do is enable CI for the repo on your profile page.

About

Deprecated in favor of rustwasm/wasm-pack-template or rustwasm/rust-webpack-template

License:Apache License 2.0


Languages

Language:Shell 69.1%Language:Rust 23.1%Language:JavaScript 5.3%Language:HTML 2.5%