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

Admin: @andrey2019
Download Telegram
My Experience Modernizing Packages to ESM

What a post! Mark, well known for his work on React, Redux, and much more, details the painful experiences and hard-earned lessons he picked up while migrating the Redux packages to ES modules. - https://blog.isquaredsoftware.com/2023/08/esm-modernization-lessons/

#esm
Node.js's 'Config Hell' Problem

Andy ponders why a Next.js project has over 30 configuration files and what we can do to avoid it - https://deno.com/blog/node-config-hell

#nodejs
Vue.js Script Setup in Less than 5 Minutes

The Vue.js Composition API is a handy tool for creating reusable, stateful code across multiple components. However, it’s not just for creating reusable composables. This blog post covers script setup and how it makes the composition API approach super fun. - https://vueschool.io/articles/vuejs-tutorials/vue-js-script-setup-in-less-than-5-minutes/

#vue
Drawing on Google Maps with Drawing Manager

This incredibly thorough and code-rich followup to Integrating Google Maps in React focuses on the use of DrawingManager to draw polygons, rectangles, polylines, circles and markers on top of maps. - https://sudolabs.com/insights/react-google-maps-drawing-tools

#react
The Extract Conditional Pattern in Vue

An extremely common question I get asked all the time is, “how do you know when to split up a component?” This article shares a simple pattern with you that is basically fool-proof, and can be applied to lots of components with almost no thought - https://michaelnthiessen.com/extract-conditional-pattern

#vue
Node.js 21 Now Available

This news is just breaking, but Node v21 (release notes) replaces Node v20 as the ‘current’ release line (basically, the one that gets all the shiny new features first.) This also means Node v20 will soon become the active LTS release. - https://openjsf.org/announcement/2023/10/17/node-js-21-available-now/

#nodejs
A Guide to Custom Directives in Vue

A directive generally is some special token in the markup that tells the library to do something to a DOM element. Find out what Vue.js Directives are and how you can create custom directive for your project. - https://blog.bitsrc.io/a-guide-to-custom-directives-in-vue-46fc87abfd4f

#vue
Don't Block the Event Loop

If you’re writing anything more complicated than a brief command-line script, reading this should help you write higher-performance, more-secure applications. - https://nodejs.org/en/docs/guides/dont-block-the-event-loop

#nodejs