Bit
Understanding Peer Dependencies in JavaScript
9 min read · 2020-12-22 · Peer dependencies are a must-know feature that many developers overlook
Reader View · Shared by 7, including Lea R. 🦄
dmitripavlutin.com
Index Signatures in TypeScript
5 min read · 2021-11-19 · Index signatures in TypeScript let's you annotate objects of unknown structure.
Reader View · Shared by 4, including Lea R. 🦄
medium.com
Type Safe JavaScript with JSDoc
~14 min read · From 2018 · JSDoc Comments Can Provide Powerful IntelliSense and Type Safety when used with Visual Studio Code.
Reader View · Shared by 9, including Lea R. 🦄
basarat.gitbook.io
Introduction
From 2020 · Last updated 3 weeks ago
Shared by 11, including Dominik Chanton, Lea R. 🦄
typescriptlang.org
Basic Types · TypeScript
6 min read · From 2018 · Introduction For programs to be useful, we need to be able to work with some of the simplest units of data: numbers, strings, structures, boolean values, and the like. In TypeScript, we support much…
Reader View · Shared by 10, including Kent C. Dodds 💿 #RemixConf, Lea R. 🦄
exploringjs.com
10. Destructuring
20+ min read · From 2020 · Destructuring is a convenient way of extracting multiple values from data stored in (possibly nested) objects and Arrays. It can be used in locations that receive data (such as the left-hand side of…
Reader View · Shared by 5, including Lea R. 🦄
mattzeunert.com
How do source maps work?
6 min read · From 2020 · You’ve probably used a CSS generator like Sass or Less, or worked in a language like ES 2015 or CoffeeScript that is compiled to JavaScript code that the can run in the browser. However, problems…
Reader View · Shared by 4, including Lea R. 🦄
Mozilla
ES6 In Depth: Modules
20+ min read · From 2016 · ES6 In Depth is a series on new features being added to the JavaScript programming language in the 6th Edition of the ECMAScript standard, ES6 ...
Reader View · Shared by 11, including Lea R. 🦄
github.com
kangax/compat-table
From 2020 · ECMAScript 5/6/7 compatibility tables. Contribute to kangax/compat-table development by creating an account on GitHub.
Shared by 4, including Lea R. 🦄
exploringjs.com
Exploring JS: JavaScript books for programmers
From 2017
Shared by 13, including Axel Rauschmayer, Lea R. 🦄
CSS-Tricks
JavaScript Scope and Closures
8 min read · From 2017 · Scopes and closures are important in JavaScript. But, they were confusing for me when I first started. Here's an explanation of scopes and closures to help
Reader View · Shared by 22, including Lea R. 🦄
alligator.io
Using webpack Bundle Analyzer or source-map-explorer to Analyze an Angular App’s Bundle Size
2 min read · From 2017 · Here are two easy ways to analyze the bundle size and composition of an Angular 2+ app's production build.
Shared by 7, including Lea R. 🦄, Alligator.io 🐊
ITNEXT
Step by step: Building and publishing an NPM Typescript package.
~20 min read · From 2019
Reader View · Shared by 8, including Lea R. 🦄, Ahmad Ragab, Leon Ormes
jsben.ch
JSBEN.CH Performance Benchmarking Playground for JavaScript
From 2019
Shared by 4, including Lea R. 🦄
koukia.ca
Top 6 ways to search for a string in JavaScript — And performance benchmarks
2 min read · From 2019 · Searching for a sub-string in a string, is one of the most basic operations, that we come across every now and then, and what I usually do…
Reader View · Shared by 4, including Lea R. 🦄
MDN Web Docs
in operator
2 min read · From 2019 · The in operator returns true if the specified property is in the specified object or its prototype chain.
Reader View · Shared by 4, including Lea R. 🦄