FrontEnd Development
28.9K subscribers
145 photos
1 video
9.35K links
Полезные ссылки иHTML, CSS, JavaScript, TypeScript, Angular, React, Vue, Node.js, Mobile and more.
Download Telegram
Vue.js and SEO: How to Optimize Reactive Sites for Search Engines

Are sites created with front-end rendered frameworks indexed by Google? Or do you need to set up pre-rendering? Paolo performed an experiment to see the reality. - http://amp.gs/dR0y

#vue
When Not to Use Lock Files with Node

Package managers like npm and Yarn use ‘lock’ files that track the exact, current versions of a project’s dependencies. Learn more about how they work and when not to use them here. - http://amp.gs/dU99

#nodejs
DIY Keyboard Shortcuts in Your Angular Application

So your new product manager’s request is to add keyboard shortcuts for common actions in the application, giving the users a fast and slick experience.
As a good developer, you don’t want to reinvent the wheel. The initial instinct tells you to google for something like “angular hotkeys” and find an existing library that will do the work for you.
- http://amp.gs/dOZ2

#angular
Functional JavaScript: How to Use reduce for More Than Just Numbers

Eric Elliott calls it “one of the most versatile functions that was ever discovered” but a lot of developers struggle with reduce beyond basic use cases. If that includes you, this tutorial goes into more depth. - http://amp.gs/dr16

#javascript
Brace yourself. Angular 8 is coming.

In this blog, let’s see what we should expect from the Angular 8 release. This post will cover some hot topics covered at ngConf and Google I/O 2019. So if you missed both events, do read on to have an idea what features your favorite framework is going to offer you - http://amp.gs/dr7Z

#angular8
The 80/20 Guide to Promises in Node.js

Promises replaced callbacks as the de facto ‘go to’ way to manage events some years ago and they form the basis of async/await so it pays to be very familiar with them. If you want more depth, Google has a promises introduction they keep up to date too. - http://amp.gs/dro1

#nodejs
How to Build a Group Chat App with Vue.js | PubNub

Learn how to build your own realtime group chat app with Vue.js in this developer tutorial. - http://amp.gs/dArT

#vue
5 Free Ways To Host Your Node.js App in 2019

Openshift, Openode, Heroku, ZEIT Now, and Glitch all provide options. I’d also add Netlify to the list if building a static site from a Node app counts. - http://amp.gs/dqUD

#nodejs
Nuxt + Jest setup from scratch

Setting up testing can be very daunting: especially if you are just starting out - http://amp.gs/ds4G

#nuxt #jest
Component Inheritance in Angular

Respect the DRY rule! Learn how to write code efficiently using component inheritance. - http://amp.gs/dDGQ

#angular
How to Control and Record Voice Calls with Node.js Serverless Functions

In case you forgot that communications platform Twilio has its own serverless functions platform, this well-written tutorial on using it to managing the recording of voice calls might whet your appetite. - http://amp.gs/dunD

#nodejs
JavaScript Clean Code: Some Best Practices

You might not sign up for all of them (particularly those around classes and inheritance), but these ‘Uncle Bob’-inspired tips might help you think more about how you name things and structure your code. - http://amp.gs/d0z1

#javascript
Dockerizing a Vue App

This tutorial looks at how to Dockerize a Vue app, built with the Vue CLI, using Docker along with Docker Compose and Docker Machine for both development and production. - http://amp.gs/dKgf

#vue #docker