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
Angular — Lazy Load Common Styles Specific to a Feature Module

Lazy loading is one of the coolest features provided by Angular which helps applications to load modules on demand. It helps to keep the initial code bundles smaller and reduce the initial loading time drastically. You can learn more about lazy loading in Angular documentation. - http://amp.gs/oWJx

#angular
Common React Interview Questions and Vetted, Eloquent Answers to Rehearse

If you’re looking to finally nail that interview, this could be worth revising. Though, of course, gaining insight rather than parroting learned answers is the real goal. - http://amp.gs/oWMc

#react
React Component Code Smells

Yes, there are code smells. Here are some which may betray something spoiling in the component source code. - http://amp.gs/oavF

#react
AWS Lambda Adds Container Image Support

And AWS uses Node in this post to show off the new feature. AWS Lambda is a serverless platform where you upload code and then it can be executed on a ‘pay as you go’ basis. Supporting containers might feel better to many developers wary of Lambda’s usual ‘upload a ZIP file’ approach. Lambda also now bills in 1 millisecond increments with a 1 millisecond minimum, so it may be worth another look. - http://amp.gs/oa6q

#nodejs #aws
Frontend Architecture at Scale for Large Organizations

Hi! I want to discuss with you how to manage Frontend architecture in large organizations. It feels to me that there are not many articles about this topic and it is not explained well.
By large organization in this article, I mean companies, in which the number of front-end engineers starts to be bigger than 15 and the company has at least multiple frontend projects. - http://amp.gs/oo0q

#frontend #large #architecture
👍1
Creating Feedback Form on Vercel Using Vue and Golang

While creating a form is a simple web development task, there's a lot to be learned by creating it with robust technologies including Vue, Go, and Vercel. - http://amp.gs/oMgi

#vue
What Makes CSS Hard To Master

Tim Severien reflects on why is CSS is easy to get started with and hard to master. - http://amp.gs/oMQM

#css
Angular — Communicating between templates with function-like HTML segments

The function-like HTML segment refers to a block of HTML with the ability to accept context variables (in other words, parameters). A typical Angular component has two major parts of logic, a HTML template and a Typescript class. The capability to utilize this kind of function-like HTML segment is essential for a good shared component. It is because a shared component with only a fixed HTML template is very difficult to fit all the needs among all different use cases. - http://amp.gs/o5iA

#angular
Building a Secure Mobile App With React Native

A solid, high level overview of security considerations to consider before embarking on your next React Native project. - http://amp.gs/o5Mc
TypeScript Performance Tips

This wiki page has been around a while but blew up on social media this week. Its original author stresses the points covered are guidance rather than indisputable fact, and many of the tips improve other forms of performance than just execution speed. - http://amp.gs/oQhX

#typescript
How to Deploy a Node App to AWS Fargate with Auto-Scaling

If full on AWS Lambda isn’t for you, maybe AWS Fargate (basically a serverless compute engine for containers) could get you running serverlessly without a huge paradigm shift. - http://amp.gs/ocVb

#nodejs #aws
👍1
​​Happy New Year 🥂
Thanks everyone
12 Frameworks for Hybrid Mobile Apps

The hybrid landscape has evolved a fair bit over the past couple of years. This post looks at a dozen different hybrid mobile app frameworks that can help you build hybrid apps with a native look and feel (using the power of JS). - http://amp.gs/ocXq

#mobile #frameworks
Creating Custom Hooks with Vue 3 & TypeScript

This is a step-by-step guide to creating a Vue 3 app with TypeScript support and building a custom hook with vue-class-component. - http://amp.gs/o6Yp

#vue
The Angular CLI is Creating Your Unit Tests Wrong

I love the Angular CLI. It’s effective, it’s powerful, it’s convenient, and it’s easy to learn. But there’s one thing I really dislike about it, and that’s the way it generates tests. - http://amp.gs/o690

#angular
Over 100 JavaScript Algorithms and Data Structures Demonstrated

Examples of many common algorithms (e.g. bit manipulation, Pascal’s triangle, Hamming distance) and data structures (e.g. linked lists, tries, graphs) with explanations. Available in other languages too like Chinese, Korean, French, and Spanish. - http://amp.gs/o664

#javascript #algorithms
Case Study: lynnandtonic 2020 Refresh

Lynn Fisher offers a behind-the-scenes look at her 2020 portfolio redesign. - http://amp.gs/ob7v

#css
DRY-ing Up Styled-Components

The way styled-components keeps JavaScript and CSS in close proximity is appreciated by many developers but, as the author notes, it can also lead to a lot of repetition. She has a solution. - http://amp.gs/obKx

#react