FrontEnd Development
28.8K subscribers
145 photos
1 video
9.35K links
Полезные ссылки иHTML, CSS, JavaScript, TypeScript, Angular, React, Vue, Node.js, Mobile and more.
Download Telegram
GitHub Shakes Up Pricing, Makes Most Core Features Free

One of the good consequences of Microsoft acquiring GitHub seems to be that they want to open it up to everyone without any barriers, so now you can use GitHub for private development with unlimited collaborators for free, and even the enterprise features are cheaper now. - http://amp.gs/3mnf

#news
How the Vue Composition API Replaces Vue Mixins

Looking to share code between your Vue components? If you’re familiar with Vue 2, you’ve probably used a mixin for this purpose. But the new Composition API, which is available now as a plugin for Vue 2 and an upcoming feature of Vue 3, provides a much better solution. - http://amp.gs/3Zht

#vue
Flexible Layouts Without Media Queries

Dannie Vinther looks into how we can create flexible layout components with CSS Grid and math functions to gain more control over the hypothetical instructions we inscribe into our components. - http://amp.gs/3p7P

#css
Working With AWS Route 53 from Node

Route 53 is Amazon Web Services’ suite of DNS-related services. Like every AWS service, you can control it via an API, and here’s how to manipulate hosted zones from Node. - http://amp.gs/3l9g

#nodejs #aws
Theming React Components with CSS Variables

Two ways to theme React components using CSS custom properties. - http://amp.gs/3n8x

#react
Should I use CSS BEM with Angular? part I

Let’s see if BEM is suitable for Angular. Just with looking at the description on the page, we can see some contradictory statements. How can something be strict and flexible at the same time? - http://amp.gs/3nKg

#angular
Spacing in CSS

Ahmad Shadeed covers everything you need to know about spacing in CSS. - http://amp.gs/3Ggl

#css
Vue Router with Eduardo San Martin Morote

This week we are joined by Eduardo San Martin Morote, who is from Ecuador, but currently lives in Paris. He is a Freelance Front-end Developer and spends much of time on Vue.js and more specifically on Vue Router. Tessa, Chris, and Ari have a bunch of questions for Eduardo dealing with Vue Router, recent changes happening with it, problems with it, and he talks about what it’s like to be the core maintainer of it. - http://amp.gs/3GW7

#vue #podcast
Best Practices Learnt Running Express.js in Production for 4 Years

There’s a lot of stuff packed in here focused around middleware, testing, logging, and general concerns around scaling and keeping apps running in production. - http://amp.gs/3xEv

#nodejs
Using Tailwind CSS with Create React App

Demonstrates a basic example with minimal setup along with another one for a more optimized workflow for production. - http://amp.gs/3f8D

#react
Comparing HTTP/3 vs. HTTP/2 Performance

HTTP/3 is still in a draft status spec-wise, but it’s already being supported here and there, including on Cloudflare. This post covers where HTTP/3 is right now, why it matters, and some basic benchmarks. - http://amp.gs/3fUv

#http
Strategies for Migrating to TypeScript

A quick overview of some strategies for migrating codebases from JavaScript over to TypeScript. - http://amp.gs/3C1U

#javascript
Creating Morphing Animations with CSS clip-path

Mikael Ainalem explains how to implement morphing, a technique for transforming one appearance into another, using CSS. - http://amp.gs/3C2Q

#css
How To Set Up an Express API Backend Project with PostgreSQL

A pretty extensive walkthrough of creating an HTTP API using Express with Node.js and Postgres on the backend, then deploying it all on Heroku. - http://amp.gs/3kVp

#nodejs
State Management Without Vuex

What if you wanted to manage state, but you didn't want to use Vuex? Don't get me wrong, Vuex is a great tool. But it's not ideal for every use case. - http://amp.gs/3efW

#vue
How to Monitor Your Web Page's Total Memory Usage with performance.measureMemory()

Learn how to measure memory usage of your web page in production to detect regressions. - http://amp.gs/37YT

#web #monitor #memory
How to Build Custom Forms with React Hooks

This allows for low-level custom forms logic, which can be reused in other places with minimal third-party dependencies. - http://amp.gs/37wa

#react