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
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
Angular Interview Question: What are ng-container, ng-content, and ng-template?

You probably already have come across the three directives ng-content, ng-container and ng-template, but a short reminder can be of help. Especially if you are preparing for an Angular interview. - http://amp.gs/0YPR

#angular
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/0ZZf

#vue
Understanding and Implementing Rate Limiting in Node

Explores the concept of rate limiting in Node — what it is, how it works, various ways to implement it, and some practical scenarios. - http://amp.gs/0pjx

#nodejs
V8 v8.1's Intl.DisplayNames

Another six weeks have passed so there’s another version of the V8 JavaScript engine that underpins Chrome and Node. In 8.1 we gain a Intl.DisplayNames method for displaying translated names of languages, regions, written scripts and currencies. - http://amp.gs/0Blz

#javascript