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 to reuse one Vue.js codebase across multiple apps

Thomas Holland returns with another article on Vue.js app architecture. I loved his previous article on Domain-driven development and this week he speaks about code re-usability but not in just one app, but multiple of those. - http://amp.gs/WWsK

#vue
How I Structure React Apps

Another instalment in this mini-series on how others are structuring their React apps. The comparison is valuable even if you eventually decide to do things your own, unique way. - http://amp.gs/Wa0e

#react
How to run separate Angular apps in one SPA shell? Multiple Angular application in one Single SPA in action

Sometimes, to solve a specific case in designing an application using Angular framework, we can choose an architecture that assumes running two or more separate Angular applications in one window scope. - http://amp.gs/WoMs

#angular
Focus Management and inert

Eric Bailey gives an introduction to Focus management, a practice of coordinating what can and cannot receive keyboard focus events, and explains how inert attribute helps. - http://amp.gs/WMaC

#css
webpack 5 Released

webpack is arguably the most popular bundler right now and this is the first major release in over two years. We get big improvements to caching (and therefore performance), reduced bundle sizes with better tree shaking, and a variety of breaking changes to prepare for the future (automatic Node polyfills are gone, for one). - http://amp.gs/W5cc

#webpack
Vue-router — props — 1/2

Here’s a short article with a few useful tips to working with Vue-router and component props. Did you know – for example – that you can automatically transform things like this.$route.params.id into an id prop? Read the article to learn how! - http://amp.gs/Wc88

#vue
JavaScript's Event Loop And Call Stack Explained

What do you do when you keep learning something then forget it? Felix turns it into a blog post. Jack Archibald’s In The Loop talk also remains a fantastic resource on this front if you have 30 minutes to spare. - http://amp.gs/WcMO

#javascript
Review of Chakra UI

Rather than having the author of the Chakra UI advocate on his own behalf, here’s a third-party review of the increasingly-popular framework which focuses on building accessible apps. - http://amp.gs/W6bQ

#react
Understand Angular’s forRoot and forChild

forRoot / forChild is a pattern for singleton services that most of us know from routing. Routing is actually the main use case for it and as it is not commonly used outside of it, I wouldn’t be surprised if most Angular developers haven’t given it a second thought. - http://amp.gs/aj10

#angular
Responsive Height Design

Ahmad Shadeed shares some considerations for testing responsive designs vertically by reducing the browser height. - http://amp.gs/a8l5

#css
Vue.js Amsterdam 2020 Videos

New videos from the conference those of including Sarah Drasner, Natalia Tepluhina, Damian Dulisz, Sébastien Chopin and of course Evan You. - https://www.youtube.com/playlist?list=PLCxzy-hmQq9FnnpckFDeDtbpsUqxdheQn

#vue #videos
Five Awesome React Packages to Check Out

At last count we have well over 500 React-related GitHub repos in our database — it’s an embarassment of riches. They can take a long time to sort through, however, which is why somebody sharing their favourites is a time saving bonus. - http://amp.gs/a1kG

#react
Announcing Flutter Community Plus Plugins

The Plus Plugins are a suite of open-source Flutter plugins that take some of the most common existing packages to the next level. - http://amp.gs/aYGK

#flutter
3 Methods to Actually Remember What You Learn in Coding Tutorials

Learn these three effective strategies on how to make the content stick by spending some time working with the code, and transforming it in a meaningful way. - http://amp.gs/atQH

#javascript
Managing Long-Running Tasks with Web Workers

Getting around UI-blocking tasks with this technique can unlock your app’s performance and give the users the experience they expect. Let Web Workers take care of your slow running scripts in the background. - http://amp.gs/amVo

#react
Vue.js Functional Components

Another article by Frederik Dietz, this time about functional components. A great technique to know, though keep in mind that the template-first approach to functional components will be obsolete in Vue 3.0. You might want to focus on learning how to use functional components with JSX though! - http://amp.gs/amMh

#vue