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

Admin: @andrey2019
Download Telegram
The Three Pillars of Angular Routing. Angular Router Series Introduction.

The Angular router is a marvel of software engineering. From handling application navigation to enforcing route guards and facilitating lazy loading of modules, Angular’s router is indispensable for most applications. However, for many developers, the internal workings of the router remain a mystery. This series aims to change that, by giving you, the developer, a deeper understanding of the router. - http://bit.ly/2Q41JCK

#angular
Create a Custom Vue.js Plugin in < 1 Hour

Plugins are essential for developers working with the Vue.js framework. This post explains what they are, and how to craft a production-ready Vue plugin with minimal fuss. - http://bit.ly/2OUwKsE

#vue
Improving DataView Performance in V8

DataViews provide a low-level way to read and write multiple number types in binary ArrayBuffers in a platform independent way but their performance has long lagged behind TypedArray. That has now changed in the V8 JavaScript engine, and here are the end results. - http://bit.ly/2zA8h6K

#nodejs
Angular Schematics: Asynchronous Schematics

Full disclosure, this post completely could be an edge case that you may or may not ever need to think about when creating your own Angular Schematics. For a majority of Schematics, you’ll be generating your Schematic in a very synchronous fashion, able to trace the exact path from one function to another without any external dependencies or service calls. - http://bit.ly/2NW31TI

#angular
Designing notifications for apps

Explore different notification models and when to use which - http://bit.ly/2OZ4Tb6

#ui
Immutability in React and Redux: The Complete Guide

Learn about side effects and how to avoid them, how to use immutability with objects and arrays in Redux reducers, and an easy way to update state with Immer. - http://bit.ly/2N6DNg4

#react
Idle Until Urgent: A Performance Strategy

When analyzing his site’s ‘first input delay’, Phil noticed all the JavaScript functions being run as the page loaded added up to a significant amount of time. His solution? Only run code in idle periods or when it’s truly, urgently required. Here’s a look at how that works in practice. - http://bit.ly/2NRxceS

#javascript
Angular Dynamic Components: Building a Dialog System

In this tutorial, we will learn what dynamic components are and how they work in angular.
We will do so by creating a very flexible dialog system, that demonstrates how dynamic components are used. - http://bit.ly/2RbGRei

#angular
Universal Application Code Structure in Nuxt.js

Are you new to Nuxt.js framework and totally overwhelmed by the number of folders it comes with? This post by Krutie Patel gives an easy-to-follow breakdown. - http://bit.ly/2R4Turl

#vue
Building the New Scotchio Animated SVG Logo

Luis Manuel shares how their team implemented a new animated logo. - http://bit.ly/2RganiV

#css
Authentication for a React and Express Application with JSON Web Tokens

How to setup authentication on a React Router-powered React app that’s using Express.js and MongoDB on the back-end. - http://bit.ly/2DzaxPR

#react #nodejs #express
30 Seconds of Code: A Curated Collection of Useful JavaScript Snippets

We first linked this project last year, but it’s just had a ‘1.1’ release where lots of the snippets have been updated and improved, so if you want to do lots of interesting things with arrays, math, strings, and more, check it out. - http://bit.ly/2xUjPAE

#javascript
How to Send an SMS Text Message using Amazon SNS from Node - http://bit.ly/2OPycMR

#nodejs
Make your Vue.js application SEO friendly

There is a lot of debate around SEO these days. Some people tend to think that SPAs (Single Page Apps) are SEO friendly while others argue on the other side that SPAs are not SEO friendly at all. - http://bit.ly/2O1wkEr

#vue #seo
Tying a React SPA to WordPress as a Backend

WordPress’s REST API is a surprisingly powerful way to use the popular CMS without having to touch PHP. This article looks into using WordPress as essentially a headless CMS with the WP REST API from a React single page app. - http://bit.ly/2NIaHci

#react #wordpress
Eleven Tips to Scale Node.js

Some rather high level suggestions in this collaboration between nearForm and Microsoft. - http://bit.ly/2IluTL2

#nodejs
Angular Router Series: Secondary Outlets Primer

In this short article, we’re going to explore secondary outlets (sometimes called named router outlets) and see the role they play in routing. By the end of this article, you will understand; how to define secondary outlets, why secondary outlets are used, the effect that they have on the structure of a URL and how they are routed and activated. - http://bit.ly/2Rd1pmJ

#angular