FrontEnd Development
30.9K subscribers
145 photos
1 video
9.35K links
Полезные ссылки иHTML, CSS, JavaScript, TypeScript, Angular, React, Vue, Node.js, Mobile and more.

Admin: @andrey2019
Download Telegram
Conditional border-radius and Three Future CSS Features

Stefan Judis gives an overview of some future CSS features: media query ranges, container queries, and @when/@else. - http://amp.gs/j15Zz

#css
How to Replace useState with useRef and Be a Winner

A post walking through the differences between different forms of state, when state is really needed or not, and an alternative and optimizations for certain cases. - http://amp.gs/j1QKg

#react
How to 'Cancel' an HTTP Request

The so-called Abort API allows you to cancel asynchronous tasks such as in-flight HTTP requests and here’s how to use it in the latest Node.js version. Simon has also given a 30 minute talk about AbortController generally if you want to learn more. - http://amp.gs/j1crr

#nodejs
How to Configure Angular Modules Loaded by the Router

Using NgModuleFactory to create a variant of the forRoot
pattern that enables configuring Angular modules… - http://amp.gs/j16E2

#angular
Tips and Gotchas for Using key with v-for in Vue.js 3

The purpose of the key attribute is to give a hint for Vue's virtual DOM algorithm when diffing the new list of nodes against the old list. Learn how to avoid misusing it. - http://amp.gs/jYIYy

#vue
33 Concepts Every JavaScript Developer Should Know

A curated collection of links to tutorials on 33 different areas of JavaScript it’s worth understanding well, including: types, closures, equality, scope, and different JavaScript engines. We’ve linked this before, but it continues to get updated. - http://amp.gs/jYIci

#javascript
How to Dockerize an Existing Node App

Sticks very much to a basic, demo example. - http://amp.gs/jYjK2

#nodejs
TDD: How to Test Using Vue.js, VueTestUtils, and Jest

The goal of test-driven development (TDD) is to ensure developers have a roadmap of their code outcome before writing the actual code. - http://amp.gs/jYzxw

#vue
Flutter Chore: Telling Your Code Not to Repeat Itself

How to easily limit the execution of a certain code-block to only a fixed amount of times. - http://amp.gs/jY15x

#flutter
Top trends in Node.js to Watch in 2021

The year 2021 has just started, and everyone is predicting trends in their respective fields. After the… - http://amp.gs/jYY0n

#nodejs
Over 100 Algorithms and Data Structures Demonstrated in JS

Examples of many common algorithms (e.g. bit manipulation, Pascal’s triangle, Hamming distance) and data structures (e.g. linked lists, tries, graphs) with explanations. Available in other languages too like Chinese, Korean, French, and Spanish. - http://amp.gs/jYtmA

#javascript #algorithms
Hide Popups When the User Scrolls Away

Popups can thoroughly spoil an otherwise good UX, so it’s best to make sure they’re hidden when no longer useful. - http://amp.gs/jYmgs

#react