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

Admin: @andrey2019
Download Telegram
Dynamic Import of Locales in Angular

The problem with using more than one language in your application is that for each language you need to import the data of the locale. That is a lot of extra code taking up bandwidth. It would be great if we can dynamically import the language when needed. All sounds good in theory. Let’s see if it also works in practice. - http://bit.ly/2PooHnr

#angular
Faster Async Functions and Promises for V8

A substantial and easy-to-follow exploration of how async functions and promises in V8 have been optimized and how the debugging experience for async code has been improved. - http://bit.ly/2DGcGaS

#v8 #async #promise
Experimenting with Brain-Computer Interfaces in JavaScript

Can you use JavaScript to analyze your brain? Yep. It’s fascinating to see the domains JS can be used with. I did something similar with an ECG (heart monitor) recently. - http://bit.ly/2zCpuw5

#javascript
Authentication in Angular

Most of the applications we build require some kind of authentication. In this tutorial, Gábor will show us how to build a simple application that uses routing and authentication. We will build a service that handles HTTP calls and stores JWT authentication tokens on the client to restrict access to pages and attach the token to authenticated HTTP calls. - http://bit.ly/2G7k4Pj

#angular
Building Your Own Interactive JavaScript Playground

Not something many of us might think we want to do, but it’s interesting to see how we could replicate the underlying functionality of sites like JSBin or Code like CodeSandbox or CodePen if we wanted to. - http://bit.ly/2RvzbDq

#javascript
The event-stream Vulnerability Explained

A good writeup of what the attack entailed and how it technically worked behind the scenes. - http://bit.ly/2Qh9FoS

#nodejs
An Extensive Guide to Progressive Web Applications

Progressive Web Apps (also known as PWAs) use modern Web technologies to provide powerful, app-like experiences in the browser. This post acts as a sort of primer to the whole concept and what those technologies are (such as service workers). - http://bit.ly/2EjHZtd

#pwa #guide
Creating Angular Desktop Apps with Electron

In this tutorial, we are going to take a look at how to turn any angular application into a native desktop app using electron. - http://bit.ly/2BWvDou

#angular #electron
The React 16.x Roadmap

If you’ve been following the React world over the past year, you’ll have run into a variety of new concepts like hooks and ‘Suspense’ and possibly wondered how it all fits into the big picture. This post explains it all and how these features will become fully supported in final React releases. - http://bit.ly/2PmuSsl

#react
The Front-End Checklist

A front-end development and deployment checklist of ideal things to do when rolling out a Web site (e.g. produce favicons, check 404 pages, print stylesheets). - http://bit.ly/2B2Ei79

#frontEnd #checklist
Top 10 UI/UX Mistakes to Avoid While Designing a Mobile App

The top commonly seen UI/UX mistakes made in mobile apps and how to avoid them. - http://bit.ly/2UD6ExN

#ui #ux
Under The Hood of React’s Hooks System

If you’re tired of hearing about React’s new hooks mechanism, you might want to skip ahead a year, but for now people are continuing to dig deep into understanding how they work. - http://bit.ly/2SB1xMO

#react #hooks
Things Worth Knowing About Dynamic Components in Angular

In this article, Netanal answers a question that was asked on Twitter. “When I create a component dynamically via ComponentRef, do I have to manually destroy my component or will Angular do that when the parent is being destroyed?” He will also add some more interesting points to his answer. - http://bit.ly/2BY3HAz

#angular