Overview for 'typescript'
Written by Frank de Jonge
/ Original link
on Aug. 8, 2021
Lerna and Yarn workspaces provide tools to ease the lives of multi-package mono-repo maintainers. Since version 7 NPM follows suit by adding support for workspaces, opening up the world of multi-package tooling for NPM-only users.While I was setting up a project, I tried to search for a way to comb…
Written by Bram.us
/ Original link
on Feb. 15, 2021
Update on the aformentioned Tackling TypeScript — book on TypeScript by Dr. Axel Rauschmayer: the entire book (except for two bonus chapters) can now be read freely online. Tackling TypeScript: Upgra…
Written by Bram.us
/ Original link
on May. 6, 2020
Deno version 1.0 is about to land next week. LogRocket walks us through it from A to Z. Deno 1.0: What you need to know → 💁♂️ Deno is a new take on Node, as if it were designed today, by the origina…
Written by Bram.us
/ Original link
on May. 4, 2020
New book on TypeScript by Dr. Axel Rauschmayer, who also wrote Exploring ES6 (and a few other books on JavaScript). This book consists of two parts: Part 1 is a quick start for TypeScript that teache…
Written by Nehalist.io
/ Original link
on Feb. 12, 2020
Immutability is the concept of not directly mutating objects and instead always work with new objects which reflect the updated object. It makes code easier to debug, performs better, is more predictable and is a requirement for many modern state management solutions.I was a bit confused about how…
Written by Bram.us
/ Original link
on Jan. 14, 2020
The Apollo docs sports a very complete tutorial, combining TypeScript, GraphQL, and Apollo (of course): In this tutorial, we’ll build an interactive app for reserving a seat on an upcoming SpaceX lau…