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
Separating Core Logic and Framework Integrations

Write a simple useForm composable to integrate a framework-agnostic form validation library with Vue.js 3. - http://amp.gs/FXPl

#vue
Building a REST API Using Google Sheets

Not all apps need a database. Not all serverless functions need AWS Lambda or Cloudflare Workers.. This is an interesting look at using Google Cloud Run along with Google Sheets as a sort-of serverless data storage API. - http://amp.gs/FLxO

#nodejs
V8 Version 8.5 Now in Beta

Coming soon to a Node.js near you (not to mention Chrome 85), the latest branch of the V8 JavaScript engine boasts Promise.any, String.prototype.replaceAll (no regex needed!) and support for logical assignment operators (like ||=). - http://amp.gs/FWng

#javascript
Methods of Improving And Optimizing Performance in React Apps

Performance optimization is like sailing (and a lot of other things) — it takes a day to learn to do and a lifetime to learn to do it well. But with all the options available where to begin exactly? This provides prescriptive recommendations to get you started in the right direction. - http://amp.gs/FazA

#react
Make the most of Angular DI: private providers concept

We can transfer any data through our apps, transform and replace it at any level.
So we can make the architecture simpler and more flexible with clear data flow and low coupling. It also makes testing and replacing our dependencies easy. - http://amp.gs/Fa6Q

#angular
A Mental Model to Think in TypeScript

If you’re new to TypeScript and struggling with how to ‘think more in types.’ - http://amp.gs/Fo6S

#typescript
13 React Date-Pickers and Time-Pickers

We genuinely believed there was nothing new under the sun with respect to date and time pickers. Turns out we were wrong. The one you want has to be in here somewhere. Each example comes with a helpful description. -http://amp.gs/FMGS

#react #datetimepicker
You Might Not Need Vuex with Vue 3 - Gábor Soós

By using the reactivity system and the dependency injection mechanism of Vue 3, we’ve gone from a local state to centralized state management that can replace Vuex in smaller applications. - http://amp.gs/F53R

#vue
A Full Stack Guide to GraphQL: React Client

The final installment in this series which covers creating a full-stack project with GraphQL at its core. In this post, the React front-end is built to consume the back-end services developed in previous instalments - http://amp.gs/FQKl

#react #graphql
The AWS Bill Heard Around The World

We mentioned the Twitter thread about the surprise $2700 AWS bill recently but here’s a proper write up. It’s more nuanced than you think and might have exposed a bug. - http://amp.gs/Fcd5

#aws
50+ Top Angular Interview Questions and Answers

This set of Angular interview questions will certainly be helpful for your interview, and also a recap of Angular. - http://amp.gs/F6VM

#angular #interview #questions
content-visibility: The New CSS Property That Boosts Your Rendering Performance

Una Kravets and Vladimir Levin explain how to improve initial load time by skipping the rendering of offscreen content by using content-visibility property, launching in Chromium 85. - http://amp.gs/Fbvw

#css
Build file-based theme inheritance module in Nuxt - Filip Rakowski

Learn how to build a theme inheritance module in Nuxt.js. A perfect module for when you want to change parts of your codebase for special campaigns such as Black Friday or the holidays sales. - http://amp.gs/XIps

#vue
Using 'Sign In with Apple' with React Native

With iOS 13, Apple began its attempt to snag some of the market share stickiness currently held by Google, Facebook, Twitter and others for being the service your app uses to identify its users. Not sure we needed it but Apple is too big to ignore in this space so here’s how to implement it. - http://amp.gs/XjbV

#reactnative
Svelte 💛 TypeScript

Svelte, a popular compile-time JavaScript framework, now supports TypeScript too. Here’s how it works and how the current approach makes a previously difficult task a lot easier. - http://amp.gs/X84C

#svelte
Beam Me Up, Scotty

On Teleporting Templates in Angula
In this article, we will discuss an interesting problem Netanel recently came across, and the solution he came up for it. - http://amp.gs/X85y

#angular
How a DevTools Extension is Made - Guillermo Peralta Scura

This is a guide through the main parts of the official Vue DevTools extension to learn from it and understand a successful approach for building these kinds of tools. - http://amp.gs/XTUH

#vue
How I Structure My CSS (for Now)

Matthias Ott shares his current take on CSS structure. - http://amp.gs/XT5N

#css
How to Use Debounce and Throttle and Abstract Them into Hooks - http://amp.gs/XzgC

#react