create-wasm-app
create-wasm-app copied to clipboard
npm init template for consuming rustwasm pkgs
### Describe the Bug The yarn equivalent for `npm init wasm-app www` is `yarn create wasm-app www', but it doesn't work with this module. ### Steps to Reproduce 1. `mkdir...
I just tried to create an instance of `create-wasm-app` by executing `npm init wasm-app`. I was expecting the project initialization to succeed. Instead, I got this error log: ``` ~/Development/accept...
### Describe the Bug I have followed the example https://rustwasm.github.io/docs/book/game-of-life/implementing.htm and modified it to use the petgraph crate and try to build a module to use wasm to store tree...
### Summary Going through the [rustwasm book's Hello world](https://rustwasm.github.io/docs/book/game-of-life/hello-world.html), I was unable to generate the `www` directory with the suggested command: ```shell npm init wasm-app www ``` This command generates...
Bumps [webpack](https://github.com/webpack/webpack) from 4.39.2 to 4.39.3. Release notes *Sourced from [webpack's releases](https://github.com/webpack/webpack/releases).* > ## v4.39.3 > # Bugfixes > > * fix a missing module in chunk caused by incorrect...
### Motivation The utility assumes `git` is already installed and fails miserably if that is not the case (throws an error). ### Proposed Solution IMO, it is good to validate...
`npm init wasm-app` apparently fails without a project name given. See issue #44.
Fixes #44
I have a bundle like this that is not electron-ready apparently: ```javascript const path = require('path').join(__dirname, 'my_project_bg.wasm'); const bytes = require('fs').readFileSync(path); let imports = {}; imports['./my_project'] = require('./my_project'); const wasmModule...
Current version of webpack-dev-server is 3.1.5, which will trigger npm's [audit](https://www.npmjs.com/advisories/725). Update to version 3.1.6 or later to mute this audit.