FrontEnd Development
28.8K subscribers
145 photos
1 video
9.35K links
Полезные ссылки иHTML, CSS, JavaScript, TypeScript, Angular, React, Vue, Node.js, Mobile and more.
Download Telegram
Events and Callbacks: Parent/Child Component Communication in Vue - Markus Oberlehner

Did you ever run into problems because you forgot to update an event handler when renaming a custom event or changing the data it emits? Callbacks can solve this, but is it a good idea to use callbacks in a Vue app? Learn why callbacks are considered an anti-pattern in Vue and when to use callbacks instead of events in Vue.js. - http://amp.gs/QeHk

#vue
An Introduction to Aleph: The React Framework in Deno

When the initial creator of Node.js moved on to create Deno to address the ‘10 things that were wrong with it’, that was newsworthy. Intrigued? This is how to get started. - http://amp.gs/Q72o

#react
Awesome Node: Over 600 Curated Node Packages, Resources and Links

We link to this every year or so as it’s a truly definitive list of categorized Node resources and continues to be updated, pruned, and added to over time. - http://amp.gs/QysS

#nodejs
Advanced Preloading Strategy For Large Applications In Angular

In Most of the applications we have a requirement of preloading modules before user navigates to a particular page to reduce loading time. In this article we will not be talking about inbuilt preloading support provided by Angular, or the ones using PreloadingStrategy. Instead we will be talking about implementing something that is more suitable for a large scale application and something which is progressive and scalable. - http://amp.gs/Qhuy

#angular
How to drastically reduce your bundle size and load time in Vue.js – Karlo Majer

Performance is one of the most important aspects when it comes to web applications. Here’s how we reduced the bundle size and load time of our Vue.js app. - http://amp.gs/QvdH

#vue
Free Crash Course To The Nitty-Gritty Of Figma

The collaborative interface design tool Figma is rapidly gaining popularity. If you are a Figma user already or are planning to give the tool a try, Pablo Stanley’s free video course Figma Crash helps you take your Figma skills to the next level. - http://amp.gs/Qgrk

#figma
Zero-Downtime Deploys with DigitalOcean, GitHub, and Docker

Uses a Node-based app to demonstrate the concept, although it could apply to anything else you can run with Docker. - http://amp.gs/QEdu

#nodejs
Three Approaches to Integrate React with Custom Elements

“the idea that React cannot integrate deeply with Web Components is a myth”, asserts the author, who then boldly goes on to explain precisely how to do it. - http://amp.gs/QVyt

#react
:focus-visible Support Comes to Firefox

Geoff Graham gives a short introduction to the :focus-visible pseudo-selector, which is, as of version 85, supported in Firefox. - http://amp.gs/Q9RK

#css
7 Vue Patterns That You Should Be Using More Often

There are lots of changes with every new Vue release. Here are some of the best new patterns that you may have missed. - http://amp.gs/Q4y3

#vue
How to Forge a Powerful Custom Builder in Angular

While all the builders provided by Nrwl, Nest.js, and Angular are certainly great, most of us have ignored the immense power of custom builders. From bundling to deploying — everything is possible. - http://amp.gs/Q4af

#angular
10 Things Front-End Developers Should Learn in 2021

This piece aims to give you some guidance on what you should focus on in 2021 as a front-end developer to level up your game, whether you're just starting with programming or already have some experience. - http://amp.gs/QRyM

#frontend
How to Generate Thumbnails using AWS Lambda from Videos Uploaded to S3

A perfect pairing of serverless and Node. This thorough walkthrough covers using Node to tie together processing new videos uploaded to an S3 bucket, running FFmpeg to generate thumbnails, and then upload those back to S3. - http://amp.gs/QUPd

#nodejs
😁1
Using Typescript With Redux Toolkit

Dan Abramov famously complained about the complexity of Redux—and he is the author. The Redux Toolkit attempts to make using Redux less daunting. - http://amp.gs/QUFf

#react
11 Popular Misconceptions About Micro Frontends

Microfrontends are a new trend that goes back for many years. Equipped with new ways and solved challenges they are now slowly entering the mainstream. Unfortunately, a lot of misconceptions are quite apparent making it difficult for many people to grasp what microfrontends are about. - http://amp.gs/QdzS

#microfrontends
One Year in Production with Flutter: Lessons Learned

A recap of some lessons a company learned after having their Flutter app in production for one year. - http://amp.gs/QdhR

#flutter
Invalidating Computed with The Composition API

There are cases where you want to invalidate a computed property you created and force a re-evaluation. This happens often if the computed prop uses non-reactive parts. - http://amp.gs/QdMW

#vue