I've gotten so wrapped up in abstractions, that I feel out of touch with some of the newest cool shit we get for free in browsers these days. I actually tried script type="module" and it was wild (thx for the inspiration @brianleroux). What, in your opinion, is new and dope?
Houdini, Streams API is pretty chill, whole bunch of sensor data in beta (blog.chromium.org/2018/04/chrome…), AudioWorklet. Not new new, but I love navigator.connection.effectiveType (serve different resources based on users effective connection speed)
Using async/await without transpiling! Web workers, modules, using template literals like JSX (github.com/Polymer/lit-ht…) and all the wasm work has me super excited!
There are so many awesome things working in the browser without transpiring already. Hard to believe when all of the JS you sent to browsers for the last 3+ years was bundled via Webpack and/or transpired via Babel/6to5 …
Module/nomodule transpilation, async/await, Workers, Worklets, WASM, Shared Array Buffers, and CSS Variables are all amazing.
What’s even better is the growing consistency in implementations.
performance.mark and you can label the start and end, and performance.measure the time in between developer.mozilla.org/en-US/docs/Web…, good support too :)