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

Admin: @andrey2019
Download Telegram
Kyle Simpson: 'I’ve Forgotten More JavaScript Than Most People Ever Learn'

This is a heck of a bold quote to pick for a title, but it’s still a neat interview with the author of the fantastic You Don’t Know JS books (which you can still read online for free). - http://amp.gs/UeRg

#javascript
A Deeper Dive Into useContext and useReducer

The repository of deeper, more detailed articles about hooks continues with this practical view of where and why to consider hooks for state management. - http://amp.gs/Ue6t

#react
A 'Horrifying' (or Genius?) globalThis Polyfill

You wanted some gnarly JavaScript magic to chew on over the Easter weekend, didn’t you? Mathias doesn’t disappoint with this look at how to implement the proposed ‘globalThis’ feature using current JavaScript. It’s not easy. - http://amp.gs/U7sD

#javascript
The Front-End Developer Handbook — 2019 Edition

This popular, detailed guide returns for another year. Updated with plenty of useful resources, learning materials and dev tools. A worthwhile reference. - http://amp.gs/UP8n

#frontend #handbook #2019
Choosing The Right Node.js Framework: Next, Nuxt, Nest?

A handy examination of the differences between three very popular server-side rendering frameworks. - http://amp.gs/UykJ

#nodejs
Animation Performance 101: Measuring with Dev Tools

Chloe Hwang explores how to measure and diagnose performance bottlenecks in your animations. - http://amp.gs/Uhzi

#css
'You Should Never Ever Run Directly Against Node.js in Production. Maybe.'

In short, directly running Node apps (particularly those that act as servers) can be brittle, so why not use tools like supervisor, nodemon or pm2 to keep things robust? - http://amp.gs/Uh6S

#nodejs
Adding Numbers using Boolean Operations in JavaScript

This isn’t necessarily useful in and of itself, but if you’re not aware of how numbers are added at the binary level, you’ll learn something. - http://amp.gs/UgjU

#javascript
Testing your Vue App with Jest and Travis CI

Do you want a cool GitHub badge on your Vue repo displaying your test coverage? This article will teach you to create test specs for a Vue app using Jest, add coverage using Coveralls, and build it all with Travis CI. - http://amp.gs/UgFC

#vue
Fastest way to cache for lazy developers — Angular with RxJS

HTTP caching simply means the browser stores local copies of web resources for faster retrieval the next time the resource is required, thus reducing the number of server calls. - http://amp.gs/UEJB

#angular
7 Useful JavaScript Tricks

I just can’t resist the occasional ‘here’s a bundle of neat tricks’ post, so sorry, not sorry 😂 The tricks are relatively simple, but if you’ve not heard of URLSearchParams, say, you need to be checking them out. - http://amp.gs/UVDK

#javascript
HTTP headers for the responsible developer

In this article, Stefan shares how HTTP headers can help you build better products for a better web for everyone. - http://amp.gs/U9qh

#http
Building Login Functionality for NativeScript Apps

How to build a comprehensive login form including a bonus section on integrating with a backend provider such as Progress Kinvey. - http://amp.gs/UUhw

#nativescript
Thinking in components with Vue.js

This article is an introduction to the Vue components and it will give you an overview of props, data, methods, components, computed properties and watchers with examples.
- http://amp.gs/UdYu

#vue
Controlling Leftover Grid Items with pseudo-selectors

How you may want to deal with leftover grid ‘widow’ items that don’t fill an entire row. - http://amp.gs/UOI9

#css #grid
V8's Blazingly Fast Parsing: How Lazy Parsing Works

A deep-down, technical post from the V8 team on how the JavaScript engine’s pre-parsing functionality works to prevent unnecessary parsing taking place before it needs to. - http://amp.gs/UOi0

#nodejs
Detect Unsaved Changes in Angular Forms

Many applications feature at least one form which allows users to edit previously submitted data. One example of many from our application is that users can create widgets and configure their settings. So, when they click on the settings button, we’ll present a form pre-populated with various settings which can be modified.
- http://amp.gs/Ur96

#angular