FrontEnd Development
25.8K subscribers
143 photos
1 video
7.84K links
Полезные ссылки иHTML, CSS, JavaScript, TypeScript, Angular, React, Vue, Node.js, Mobile и многое другое.

Администратор: @andrey2019
Download Telegram
How to Build a ChatGPT-a-Like with Clerk and AWS Bedrock

A thorough walkthrough whose focus is on the UI rather than the LLM/AI stuff behind the scenes which is taken care of by Amazon’s Bedrock service. Clerk handles the auth, while Next.js forms the base of the app. - https://conermurphy.com/blog/how-to-build-your-own-chatgpt-clone-using-clerk-aws-bedrock

#react
Desert Racer: World's First CSS-Only Swipe-Aware Game!

Philip Warkentien II created a CSS-only, no JS, no checkbox, swipe-aware (scroll-aware) game. In this article, you’ll learn exactly how it was built. - https://dev.to/warkentien2/desert-racer-worlds-first-css-only-swipe-aware-game-4j0h

#css
An Interactive Guide to CSS Container Queries

Ahmad Shadeed shares an interactive guide to container queries, explaining the problems they solve, how they work, and how you can use them today in your workflows. - https://ishadeed.com/article/css-container-query-guide

#css
Why You Should Say Goodbye to Mixins and Embrace Composables

Vuejs 3 introduced composables as the new way to define logic that is shared and re-used among components. In this article, the author outlines the missing pieces offered composables as an excellent replacement for mixins. - https://levelup.gitconnected.com/why-you-should-say-goodbye-to-mixins-and-embrace-composables-9749d8fac9fc

#vue
Optimizing JavaScript for Fun and for Profit

A tour of several things to avoid to keep your code running fast and smooth, complete with examples. While the performance ground upon which we walk is often shifting, many of these things are good, common sense practices. - https://romgrk.com/posts/optimizing-javascript

#javascript
__dirname is Back in Node with ES Modules

In an ES module, instead of using __dirname or __filename, you can now use import.meta.dirname and import.meta.filename - https://www.sonarsource.com/blog/dirname-node-js-es-modules/

#nodejs