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
When To Use The New Vue Composition API (And When Not To)

The new Vue 3 composition API was created to address scaling issues with the options API. But is it still useful in smaller apps? - http://amp.gs/JLKP

#vue
Animated Matryoshka Dolls in CSS

Jhey Tompkins shows how to create a fun and interactive set of Matryoshka dolls where they nest inside one another in CSS. - http://amp.gs/JWdO

#css
What’s Actually New in Angular 9?

We featured the release of Angular 9 a couple of weeks ago – this post digests the release. - http://amp.gs/JoxP

#angular
A Grab Bag of Node Security Considerations

A post that covers a variety of areas from handling credentials to XSS, SQL injection, and rate-limiting. - http://amp.gs/JMPs

#nodejs
Fixing Memory Leaks in Web Applications

When the front-end became more dynamic, part of the bargain was that front-end developers would have to deal with “a new class of problems that don’t really exist in the server-rendered world”.. including avoiding memory leaks on 101 different types of the client device. Here’s an introduction to client-side memory leaks and how to begin investigating them. - http://amp.gs/J5mq

#javascript
9 Talks from the WebAssembly Summit 2020

WebAssembly is undoubtedly going to become a more significant technology this decade and these talks provide a glimpse at the cutting edge of WASM with Lin Clark’s talk providing perhaps the best overview of the space. - https://www.youtube.com/playlist?list=PL6ed-L7Ni0yQ1pCKkw1g3QeN2BQxXvCPK#wassummit2020

#webassembly #video
New Media Queries You Need to Know

Kristofer Selbekk takes you through some of the most interesting new media queries in the new Media Query Level 5 specification. - http://amp.gs/JcbV

#css
Supercharge event management in your Angular application

Learn how to boost your Angular application speed by selectively reacting to performance-sensitive events. To do that we'll implement a few event plugins and simplify them with decorators. - http://amp.gs/Jb83

#angular
A Practical Introduction to GeoJSON with Node

GeoJSON is a standardized format for representing geographic data in JSON. - http://amp.gs/0IaJ

#nodejs
Using State Machines in Vue.js with XState – Sarah Dayan

While state machines used to be an obscure model for the front-end world, it has gained quite some traction lately, mostly thanks to XState. Instead of defining imperative UI flows, and lose track of their logic, state machines make them first-class citizens by letting you model them decoratively. They’re the closest thing to an actual flowchart, which is how a product manager or a UI designer would likely design the experience of a product. XState works within any JavaScript and TypeScript project, including Vue. - http://amp.gs/0j5A

#vue
Aborting a Fetch API Request

The Fetch API didn’t have the ability to abort a request in its early days (unlike XMLHttpRequest) but AbortController and AbortSignal can help you get the job done on all modern browsers. - http://amp.gs/08aY

#javascript
Component Communication in Angular

In this post, we're going to learn a few methods to pass data between components in Angular and which is the best way depending upon the scenario. - http://amp.gs/0TvK

#angular
Nesting Tab and Stack Navigators in React Native and Expo Apps

The art of rendering a navigator inside the screen of another navigator. - http://amp.gs/0zDp

#reactnative
👍1
Create an i18n Plugin with Composition API in Vue.js 3

An example on how to use the inject and provide functions to create an i18n plugin using Composition API in Vue.js 3. - http://amp.gs/011H

#vue
Building a Circuit Breaker in Node: A 2 Part Series - http://amp.gs/01SU

#nodejs