stdweb icon indicating copy to clipboard operation
stdweb copied to clipboard

A standard library for the client-side Web

Results 107 stdweb issues
Sort by recently updated
recently updated
newest added

I would like to execute everything in a web worker, but I couldn't find any docs about that.

The `js!` macro is truly a thing of terror, however we don't have much choice if we want to work on stable. That said, it would we worthwhile to convert...

T-enhancement
E-medium
P-low

With js_export, all errors in a function are reduced to be located at the #[js_export] annotation: without js_export: ``` error[E0308]: mismatched types --> src/lib.rs:27:71 | 27 | let mut writer...

I noticed that the `files` property of `InputElement` was removed some time ago. Are there any thoughts on how this should be reimplemented? In the meantime, are there any quick...

Hey, I was thinking to use wasm in my project, but it is very small website and wanted to have fast load times. I tried compiling minimal example but I...

When using stdweb with WebAssembly.intantiate (the newer instantiateStreaming requires a webserver with wasm type; setting this up is not trivial), a second argument: importObject (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/instantiate) [is required]. What should this...

I think the documentation on the main page needs a full example of js_export use that includes how to import it, or one of the examples in the examples folder...

![screen shot 2018-06-24 at 17 05 41](https://user-images.githubusercontent.com/888526/41819871-f269006c-77d0-11e8-9fc0-127594cc102e.png)

The [cookie api is an js extension](https://developer.mozilla.org/en-US/Add-ons/WebExtensions/API/cookies) but supports a lots of browsers. Do you think it is worth to adding it to stdweb?

I'm looking for feedback on the approach to subclassing input elements. This PR adds a custom `instanceof` implementation for input elements, and implements `FileInputElement`. Fixes #226.