Ready.code - JS development. Releases and articles
8.45K subscribers
511 photos
7 videos
352 links
Stay updated with the latest library releases and insightful articles on development trends and techniques.

#js #ts #vue #react #angular #bun #node #meme #IT
Download Telegram
βœ… How to Annul Promises in JavaScript

You can 'cancel' XHR and fetch requests, but can you cancel regular promises? Currently, no, but Zachary looks into doing the next best thing: telling a promise the game's up, and discarding/ignoring its eventual results.

Link to the article

#js #frontend
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ”₯3πŸ‘2πŸ‘¨β€πŸ’»2
βœ… Pure CSS Circular Text (Without Requiring a Monospace Font)

How to create circular text (animated too if you want) with just pure CSS. A nice decorative element.

Link to the article

#css #frontend
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘¨β€πŸ’»4πŸ‘2πŸ”₯2
🀣9πŸ‘2😁2🌚2πŸ”₯1
βœ… Web Performance Guide

A helpful collection of over 20 plain language guides, covering things such as working with the different core web vitals, optimization techniques, critical CSS, metrics, user monitoring, and more. You’re bound to find some worthwhile advice here.

Link to the article

#js #frontend #css #html #performance
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘5πŸ”₯4πŸ‘¨β€πŸ’»2
βœ… Layout and Reading Order

This talk gets into the nitty gritty of layout options with CSS (think grid, subgrid, gap etc) β€” with a particular focus on the proposed, new CSS masonry method, what it aims to fix and the prototyping currently underway in Chrome. A good overview of where we are, and where things are heading in terms of laying out our pages

Link to the video

#frontend #css #video
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ”₯3πŸ‘2😱2
βœ… How to use container queries now

Makes pragmatic recommendations on how we can use container queries now (whilst still supporting older browsers).

Link to the article

#css #frontend #google
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ”₯4πŸ‘2πŸ‘¨β€πŸ’»2
🀣20😁6πŸ”₯2😎1
βœ… CSS 'Surprise Manga Lines'

When a manga or anime character is surprised, lines often focus on and highlight their face. This post looks at how to create a similar effect with HTML and CSS.

Link to the article

#css #frontend #html
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ”₯3😱3πŸ‘1
βœ… Checkboxes: Design Guidelines

When to use them, what alternative input fields to consider, and usability guidelines to keep in mind.

Link to the article

#css #html #design #frontend
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ”₯4πŸ‘2πŸ‘¨β€πŸ’»2
βœ… 'Blazing Fast' Websites with Speculation Rules

A look at how to pre-render pages on your site. There’s a demo included to so you can get a feel for how it works.

Link to the article

#frontend #performance #render #engine
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘5πŸ”₯3πŸ‘¨β€πŸ’»2
🀣26😁4πŸ‘2🌚2
βœ… πŸ‘©β€πŸ’» The simplicity of using Vue’s reactivity system outside of Vue

Vue’s reactivity can be imported and used in JS outside of a Vue app, like in Node directly.

Link to the article

#vue #js #node #reactivity #ref #frontend
#article
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ”₯7πŸ‘4πŸ‘¨β€πŸ’»3
βœ… πŸ‘©β€πŸ’» Vue Tip: Destructure in v-for

We are a big fan of ES6 destructuring and recently discovered that you can use it in v-for.

First, let's take a look at a v-for without using ES6 destructuring:


<div v-for="article in articles" :key="article.id">
<h2>{{ article.title }}</h2>
</div>


articles is a list of article JavaScript objects and has the type Article[]:


interface Article {
title: string
id: string
}


We can use ES6 destructuring which results in a cleaner template code:


<div v-for="{id, title} in articles" :key="id">
<h2>{{ title }}</h2>
</div>


#vue #js #frontend #destructuring
#tip
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘8πŸ”₯5πŸ†’4πŸ‘¨β€πŸ’»2
βœ… πŸ‘©β€πŸ’» Seamless Fullstack Nuxt Apps with Nuxt Hub

NuxtHub is a deployment and admin platform making it possible to build and deploy fullstack Nuxt application with ease. In this article they will explore this amazing new tool and what capabilities it offers to the ecosystem.

Link to the article

#vue #nuxt #frontend #backend #js #fullstack
#article
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘3πŸ”₯2πŸ‘¨β€πŸ’»2😱1
βœ… πŸ‘©β€πŸ’» React Flow 12: Build Node-Based Editors and Interactive Diagrams

Now more broadly known as xyflow, this mature library makes it easy to create β€˜node-based UIs’ where you want to have numerous interactive components wired together however you choose. Version 12 introduces server side rendering support, dark mode, more hooks and helpers, and better DX via TSDoc.

Link to the release

#react #js #frontend #diagrams #xyflow #lib
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ”₯3πŸ‘2πŸ‘2
βœ… πŸ‘©β€πŸ’» Sneaky React Memory Leaks: How the React Compiler Won’t Save You

Closures can lead to memory leaks in React and while the new and exciting React Compiler can tackle a lot of issues and make most codebases more performant, it pays to be aware of the tricky edge cases.

Link to the article

#react #js #frontend #memory #leaks
#article
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ”₯3πŸ‘2πŸ‘2
βœ… πŸ‘©β€πŸ’» React 19's use Hook Can Impact App Performance

The new use() hook in React 19 looks great. However, there are some potential issues which require some exploration and explanation, says Jack.

Link to the video

#js #react #hooks #frontend
#video
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘3πŸ”₯3πŸ‘€3
βœ… πŸ‘©β€πŸ’» Learn Suspense by Building a Suspense-Enabled Library

What better way to learn than to get your hands dirty? Especially when it comes to a topic that’s a little awkwardly documented.

Link to the article

#js #react #frontend #lib
#article
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘4πŸ”₯4πŸ‘¨β€πŸ’»2
βœ… πŸ‘©β€πŸ’» Using React 19 with Both Vite and Then Next.js

The VP of Product at Vercel starts with a client-only React app using Vite and looks at how React 19 can make life better, before moving on to a Next.js example. (32 minutes.)

Link to the video

#js #react #next #frontend #vercel
#video
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ”₯5πŸ‘3πŸ‘2πŸ‘€1
This media is not supported in your browser
VIEW IN TELEGRAM
βœ… πŸ‘©β€πŸ’»πŸ‘©β€πŸ’» The Magic of Clip Path

This post sets out to β€œinspire you and show you that thinking outside the box can lead to some great animations” β€” all via the magic of the very powerful clip-path CSS property.

Link to the article

#frontend #css #html
#article
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘8πŸ‘€3πŸ”₯2