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
How CSS Works: Understanding the Cascade

Benjamin Johnson dives into the CSS cascade and looks at a few ways to keep the cascade from getting out of hand. - http://bit.ly/2t6u9Tz

#css
How Concurrent Marking in V8 Frees Up Your Main Thread

‘Marking’ is a key step in the V8 engine’s garbage collection process and as of Node 10 this process takes place on separate worker threads meaning there’s now more time for your code to run. - http://bit.ly/2KaTzJM

#nodejs
Build Custom Pagination with React

Build a custom pagination widget with React to display large datasets in chunks. - http://bit.ly/2t68Vpb

#react
Image Inconsistencies: How and When Browsers Download Images

Browsers don’t download images referenced in CSS until the CSS object model is built which could lead you to use img tags to load images more quickly. but Firefox may not behave as you’d expect here. - http://bit.ly/2yx5v3Y

#web #images
Text Editing Techniques Every Front-End Developer Should Know

Ben Frain shares some useful or perhaps underused techniques that will help you to perform with fluidly in your editor or IDE of choice. - http://bit.ly/2K36qgT

#css
A framework for communicating (or designing) any project.

Closing the gap between the solution you came up with and the problem you’re attempting to solve. - http://bit.ly/2lrXSlX

#framework #communicating
Level Up Your CSS Selector Skills

An in-depth review of interesting CSS selectors, complete with live, editable examples, plus a few that will be available in the future. - http://bit.ly/2K1kirX

#css
The State of React Native 2018

An update on the state of the React Native project direct from Facebook including how they’re using it in more of their own apps and news of a major rearchitecturing process. - http://bit.ly/2K85VCX

#reactNative
Reaptcha: Google reCAPTCHA v2 Wrapper for React

A clean and idiomatically React way of using Google’s valuable reCAPTCHA service to keep bots away from your signup, commenting, and similar systems. - http://bit.ly/2K6ivmh

#react #google #reCAPTCHA
JavaScript Engine Fundamentals

A fantastic writeup (with video, if preferred) looking at the key parts of major JavaScript VMs/engines and how they interact with the code you write. - http://bit.ly/2yHA9aB

#javascript
How to Build a React Project From Scratch with Webpack 4

If you’ve been leaning on create-react-app till now but are keen to learn how to do it all from scratch, this basic walkthrough could help. - http://bit.ly/2KgCk9X

#react
Don’t Use The 'Placeholder' Attribute

The ‘placeholder’ attribute populates an input element with temporary text to indicate what input is expected, but it introduces issues that prevent it from being as useful as it sounds. - http://bit.ly/2yKpaxj

#css