fork of https://github.com/rustwasm/wasm-pack for the needs of NextGraph.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
449 B
15 lines
449 B
# Getting Started
|
|
|
|
You can create a new Rust-WebAssembly webpack project by using the [rustwasm webpack-template].
|
|
|
|
Run:
|
|
|
|
```
|
|
npm init rust-webpack my-app
|
|
```
|
|
|
|
The last argument will be your project name. After you run the command, you will have a
|
|
directory with a new project, ready to go. We'll talk about what's been included in this
|
|
template further in this guide.
|
|
|
|
[rustwasm webpack-template]: https://github.com/rustwasm/rust-webpack-template
|
|
|