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

Admin: @andrey2019
Download Telegram
Recipes to Wrap, Extend or Proxy a Vue Component

This article details some ways to create a component that extends another. We’ll look at attributes, props, listeners, and slots, along with functional components and render functions. The syntax will generally be Vue v2.6+ with additional notes for Vue 3. - https://medium.com/js-dojo/recipes-to-wrap-extend-or-proxy-a-vue-component-dbb4a8692540

#vue
ES Module Imports in Node.js and the Browser

Just a quick example/handy recap of the basic setup. - https://eli.thegreenplace.net/2023/es-module-imports-in-nodejs-and-the-browser/

#nodejs #esm
Cryptography Fundamentals with the crypto Module

An introduction to some concepts of modern cryptography, and how to work with them in practical terms in Node using methods from the crypto module  - https://blog.yonatan.dev/cryptography-with-node-crypto-module/

#nodejs
React Server Components From Scratch

Alright, let’s build React Server Components totally from scratch. Right from nothing, through building a simple Node-based server and working out from there. Ben is very engaging and does a great job of explaining things. - https://www.youtube.com/watch?v=MaebEqhZR84

#react
Nested Dark Mode via CSS Proximity

Jonathan Dallas shares how you can arbitrarily nest themes to any depth using CSS Custom Properties. - https://jwdallas.com/posts/nesteddarkmode

#css
Composables vs. Renderless Components in Vue 3

Renderless components are typically used to provide some functionality to child components, while composables are used to provide stateful logic to a component or components - https://medium.com/@moein.mirkiani/composables-vs-renderless-components-in-vue-3-1e7386d8182

#vue