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

Admin: @andrey2019
Download Telegram
WebKit Features in Safari 18.0

Jen Simmons gives an overview of new web platform features that just landed in WebKit, the rendering engine driving Safari. - https://webkit.org/blog/15865/webkit-features-in-safari-18-0

#css
BWIP-JS: A Barcode Writer in Pure JavaScript

A library that can generate barcodes using over 100 different barcode types and standards, both single and two dimensional. There is, of course, a live demo where you, too, can discover far more types of barcodes exist than you ever imagined. - https://github.com/metafloor/bwip-js

#javascript
assistant-ui: React Components for AI Chat

It doesn’t just give you the interface components, but has integrations for Vercel AI, Langchain, and talking to other common LLM APIs (e.g. OpenAI’s), enabling you to build your own in-house AI chat system quickly. - https://github.com/Yonom/assistant-ui

#react
How To Use Feature Flags in Vue.JS

Feature Flags are conditional statements like an if/else block of code that provides the ability to switch certain functionalities or features on/off in an application. This article explores how to confidently test and integrate new features in your applications without deploying new code using Feature Flags. - https://daveyhert.hashnode.dev/how-to-use-feature-flags-in-vuejs

#vue
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. - https://webdeveloper.beehiiv.com/p/cancel-promises-javascript

#javascript
Types of React Components: An Overview

A complete overview, including basic code examples, of the different types of React component, from those built with createClass, class components, HOCs, function components, and more modern options. A major update of a post we first featured in 2019. - https://www.robinwieruch.de/react-component-types/

#react
How Bun Supports V8 APIs Without Using V8

Bun uses the JavaScriptCore engine, not V8, yet it can support Node addons that rely upon V8’s APIs. Here’s how it works under the hood. - https://bun.sh/blog/how-bun-supports-v8-apis-without-using-v8-part-1

#nodejs
Animate to height: auto; in CSS

Bramus Van Damme explains how to use the interpolate-size property or the calc-size() function to enable smooth transitions and animations from lengths to intrinsic sizing keywords and back. - https://developer.chrome.com/docs/css-ui/animate-to-height-auto

#css
Building a blog with Nuxt content

This is an article series dedicated to building a blog with Nuxt and Nuxt Content. For this part the author introduce pagination and some navigation features into the blog. - https://masteringnuxt.com/blog/building-a-blog-with-nuxt-content-part-2

#vue