🔗 Proposal for <selectmenu> which is available in Chromium-based browsers behind flag
A way to finally be able to fully style <select>.
github.com/captainbrosset/op…
📢 Announcing Parcel CSS: A CSS parser, compiler, and minifier written in Rust!
⚡️ Extremely fast
🗜️ Small output
🏢 Vendor prefixing
🪂 Syntax lowering
🍱 CSS modules
📦 Use with Parcel, or standalone in JS or Rust!
GitHub: github.com/parcel-bundler/pa…
Blog: parceljs.org/blog/parcel-css…
With this change, we are taking a major step in #MicrosoftTeams Teams architecture. We are moving away from Electron to Edge Webview2. Teams will continue to remain a hybrid app but now it will be powered by #MicrosoftEdge. Also Angular is gone. We are now 100% on reactjs
Want a view of what the TypeScript compiler sees in your project?
⏱ tsc --extendedDiagnostics
How long stuff took and how big/complex it is.
📜 tsc --listFiles
List of every file included in the compilation.
🧠 tsc --explainFiles
List of every file and *why* it’s included.
I just spent ~4 hours investigating an "eats-all-the-gigabytes" memory leak in JavaScript and the solution turned out to be:
```diff
-arr.map(myFunction)
+arr.map(x => myFunction(x))
```
Because `map` passes 3 args: item, index, thisObj. Friends, be careful.
Deno 1.16 has been released. Some highlights:
📁 Read from disk using fetch
🔀 New JSX transforms
💾 localStorage without --location
🔒 Per test permissions are now stable
▶️ Deno to NPM build tool
🔗 WASM reference types
See the full release notes at deno.com/blog/v1.16
React GUI is an exploration of what React Native's APIs could look like if they were more modular, more composable, expanded beyond mobile touch interfaces, and modeled on web standards. Would you prefer to use an API like this? ixrvy.sse.codesandbox.io/doc…
The video of my live demo at React Finland is now up! 🇫🇮🧁
If you're new to vanilla-extract, in ~15min you'll have a much better idea of how it works in practice.
[Thread] Live tweet of an introduction to @solid_js at @ReactFinland
In this talk, Ryan explore an example to show the similarity and differences between Hook + Virtual DOM versus Reactivity + DOM.
#solidjs#react#javascript