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

Admin: @andrey2019
Download Telegram
How to Get the Best Performance Out of Your Angular Apps

Angular is a great framework and can be used for developing large scale applications, but can be tricky to fine tune and achieve good load time and run-time performance. In this post, The author of this article will detail some best practices he has learned along the way, so you will not make the same mistakes he made.
- http://amp.gs/4aMn

#angular
So What’s New in Vue 2.6?

This article takes a quick look at the new and shiny things that shipped with the Vue 2.6 as well as important changes including the new slot syntax, async error handling, dynamic directive arguments, and more. - http://amp.gs/4oqQ

#vue
A Complete Guide to useEffect

This epic post has got a lot of people excited this week as it’s helped them finally understand a variety of concepts relating to hooks, refs, and effects. It’s a long though one, so get a coffee ready, or just enjoy the TLDR. - http://amp.gs/4MSA

#react
How to Manipulate CSS Colors With JavaScript

Adam Giese shows how to manipulate colors using JavaScript.
- http://amp.gs/45Nz

#css
Create Modular Components with Angular Structural Directives

When creating components, particularly core components, our goal is to make them as modular and as flexible and grant the consumers a high level of control over what they can pass.
- http://amp.gs/4Qv2

#angular
How to Design and Build a Carousel in VueJS

Carousels have become one of the core elements used in modern web development. Why? Because they allow users to skim through available content without vertical scrolling, saving time and keeping cognitive load to a minimum. This is reason enough to learn how to build carousels in Vue. - http://amp.gs/4cEd

#vue
Scheduling in React

When you have numerous components all wanting to do things at the same time, things can get.. sticky. Here’s a look at some of the concepts behind making it better. - http://amp.gs/4bnM

#react
Sophisticated Partitioning with CSS Grid

I love this approach to laying out regular updated content in this way, however I was initially disappointed to see the final result was built using Tables.... only to realise on closer inspection that those tables there then laid out using Grid Layout. - http://amp.gs/RIlk

#css #grid
Sliding In And Out Of Vue.js

One of the key advantages of Vue.js is that it is easy to wrap up non-Vue code into Vue. This article explores this advantage, covering three distinct types of third-party JavaScript and ways to embed each of them in Vue. - http://amp.gs/Rj9E

#vue
An Introduction to Web Components

The first in a series on Web Components. This introductory post looks at why they’re a great tool for delivering “high-quality user experiences without complicated frameworks or build steps” without the risk of becoming obsolete. - http://amp.gs/Rj6Q

#web #components
Rendering Large Lists with react-window

If you need to display large lists of data efficiently, you may be familiar with react-virtualized. react-window is a rewrite by the same author aiming at being even smaller and faster. - http://amp.gs/R8NN

#react
CSS Flexbox: 5 Real World Use Cases

An overview of some common layout options and how you can accomplish them through Flexbox. - http://amp.gs/R18l

#css #flexbox
A Complete Guide to Threads in Node.js

An introduction to executing complex operations in Node with the worker_threads module that was first introduced with Node 10.5 and is now enabled by default. - http://amp.gs/R1bX

#nodejs
Hacking Custom Checkboxes & Radios with CSS

Improving the look of native radio buttons/checkboxes while still preserving accessibility. - http://amp.gs/RYo6

#css
use-query-params: A React Hook for Managing State in URL Query Parameters

Encode and decode data of any type as query parameters with smart memoization to prevent creating unnecessary duplicate objects. - http://amp.gs/Rtur

#react #hooks