Asynchronous Modules and Components in Angular Ivy
Ivy engine has brought (and also will bring) a huge amount of new features. Honestly, I always dreamed of having an opportunity to load modules asynchronously, and most importantly, components, you can do that with one line of code in Vue - http://amp.gs/Q0Xq
#angular
Ivy engine has brought (and also will bring) a huge amount of new features. Honestly, I always dreamed of having an opportunity to load modules asynchronously, and most importantly, components, you can do that with one line of code in Vue - http://amp.gs/Q0Xq
#angular
Medium
Asynchronous modules and components in Angular Ivy
Ivy engine has brought (and also will bring) a huge amount of new features. Honestly, I always dreamed of having an opportunity to load…
Debugging Layout Repaint Issues Triggered by CSS Transition
Dzhavat Ushev demonstrates how to find a solution to an issue with layout repaint. - http://amp.gs/QKK4
#css
Dzhavat Ushev demonstrates how to find a solution to an issue with layout repaint. - http://amp.gs/QKK4
#css
Should You Really Use useMemo?
In a natural follow up to Max Rozen’s Understanding When to Use useMemo which we featured recently, the author of this article first states a hypothosis about useMemo performance and then rigorously tests it and reports the raw data. Results that may, yet again, change your mind about the value of useMemo. - http://amp.gs/Q3G9
#react
In a natural follow up to Max Rozen’s Understanding When to Use useMemo which we featured recently, the author of this article first states a hypothosis about useMemo performance and then rigorously tests it and reports the raw data. Results that may, yet again, change your mind about the value of useMemo. - http://amp.gs/Q3G9
#react
Medium
Should You Really Use useMemo in React? Let’s Find Out.
Some of our developers recently came with the question, when should I use useMemo in React? In this article we benchmark the performance.
How to Create a Custom GitHub Action with Node
Extensive notes (and a 15-minute screencast) on building your own custom action for GitHub’s Actions CI/CD system – specifically in this case to give thanks on new pull requests. - http://amp.gs/Q33A
#nodejs
Extensive notes (and a 15-minute screencast) on building your own custom action for GitHub’s Actions CI/CD system – specifically in this case to give thanks on new pull requests. - http://amp.gs/Q33A
#nodejs
Space Jelly
How to Create a Custom GitHub Action with Node & JavaScript
Read How to Create a Custom GitHub Action with Node & JavaScript at Space Jelly.
Is Angular Still Alive?
When I started my career as a software engineer, Angular was the first framework I learned. At that time, it was the most popular and most used JavaScript framework among developers. But with the development of frameworks like React and Vue, Angular seems to have lost its position as a top JavaScript front-end framework and there is a huge debate over the pros and cons of learning it. - http://amp.gs/QHkh
#angular
When I started my career as a software engineer, Angular was the first framework I learned. At that time, it was the most popular and most used JavaScript framework among developers. But with the development of frameworks like React and Vue, Angular seems to have lost its position as a top JavaScript front-end framework and there is a huge debate over the pros and cons of learning it. - http://amp.gs/QHkh
#angular
Medium
Is Angular Still Alive?
Photo by Wu Jianxiong on Unsplash.
Seven Interview Questions on JavaScript Closures
You might want to revise A Simple Explanation of JavaScript Closures before you take these on - http://amp.gs/QHuj
#javascript
You might want to revise A Simple Explanation of JavaScript Closures before you take these on - http://amp.gs/QHuj
#javascript
Dmitri Pavlutin Blog
7 Interview Questions on JavaScript Closures. Can You Answer Them?
I compiled a list of 7 interesting and increasingly challenging questions on JavaScript closures. Can you answer them?
vno: a vue / deno love story – Andrew Rehrig
Deno is a new runtime for JavaScript and TypeScript. Since you can’t use it directly with Vue-CLI (which requires Node.js), the community has created vno, a CLI tool for Deno to compile and bundle Vue single-file components. Impressive! - http://amp.gs/Q2mR
#vue
Deno is a new runtime for JavaScript and TypeScript. Since you can’t use it directly with Vue-CLI (which requires Node.js), the community has created vno, a CLI tool for Deno to compile and bundle Vue single-file components. Impressive! - http://amp.gs/Q2mR
#vue
Medium
vno: a vue / deno love story
the first native build tool for compiling and bundling Vue single-file components in a Deno runtime
Styling Scrollbars With CSS
Chris Bongers shares some tips on styling scrollbars. - http://amp.gs/Q2Fg
#css
Chris Bongers shares some tips on styling scrollbars. - http://amp.gs/Q2Fg
#css
Daily Dev Tips
Scrollbar styling with CSS Tutorial [2021]
In today's guide we will learn how to style a scrollbar with CSS. See the code examples in the Codepen!
Unit Testing Your Gatsby Site with Jest and React Testing library
The detailed, generously illustrated guide to get unit testing going on your Gatsby site. While sometimes tedious to setup, the author asserts the effort to implement this type of testing is worth it. - http://amp.gs/Qwis
#react
The detailed, generously illustrated guide to get unit testing going on your Gatsby site. While sometimes tedious to setup, the author asserts the effort to implement this type of testing is worth it. - http://amp.gs/Qwis
#react
DEV Community
Unit Testing Your Gatsby Site with Jest and React Testing library
Testing is a crucial piece when it comes to building websites or apps. It gives you more confidence i...
Clean Code Checklist in Angular
Angular has rapidly grown to become one of the most popular frameworks for building front-end, cross-platform web applications. It gives you a lot of the out-of-the-box features, such as a routing system, a dependency injection framework, forms handling, etc. Angular also enforces you to use both TypeScript and RxJS, since its already part of the Angular ecosystem. This extensive width of features makes Angular a good candidate for large enterprise solutions. - http://amp.gs/QFJm
#angular
Angular has rapidly grown to become one of the most popular frameworks for building front-end, cross-platform web applications. It gives you a lot of the out-of-the-box features, such as a routing system, a dependency injection framework, forms handling, etc. Angular also enforces you to use both TypeScript and RxJS, since its already part of the Angular ecosystem. This extensive width of features makes Angular a good candidate for large enterprise solutions. - http://amp.gs/QFJm
#angular
Medium
Clean Code Checklist in Angular ✔️
This post covers my personal recommendations for writing clean production-ready Angular code
50 Javascript Best Practice Rules to Write Better Code
Javascript is powerful and flexible which allows you to code any way you like and try some very unusual things which can lead to a bug in your code. Here are 50 things I learned about coding in Javascript you should know about. - http://amp.gs/QXis
#javascript
Javascript is powerful and flexible which allows you to code any way you like and try some very unusual things which can lead to a bug in your code. Here are 50 things I learned about coding in Javascript you should know about. - http://amp.gs/QXis
#javascript
7 Vue Patterns That You Should Be Using More Often – Fotis Adamakis
A list of less-known tricks and patterns that can be useful across different use cases. - http://amp.gs/QLUG
#vue
A list of less-known tricks and patterns that can be useful across different use cases. - http://amp.gs/QLUG
#vue
Medium
7 Vue Patterns That You Should Be Using More Often
Let’s take a look at some interesting but not so popular Vue features.
A beginner’s guide to React Server-Side Rendering (SSR)
In this lesson, we are going to talk about server-side rendering (SSR), its benefits, and its pitfalls. Then we will set up a mini React project and an express server (Node.js) to demonstrate how SSR can be achieved. - http://amp.gs/QWUC
#react
In this lesson, we are going to talk about server-side rendering (SSR), its benefits, and its pitfalls. Then we will set up a mini React project and an express server (Node.js) to demonstrate how SSR can be achieved. - http://amp.gs/QWUC
#react
Medium
A beginner’s guide to React Server-Side Rendering (SSR)
In this lesson, we are going to talk about server-side rendering (SSR), its benefits, and its pitfalls. Then we will set up a mini React…
The Top 15 AWS Architecture Blog Posts of 2020
This is a good retrospective to some useful blog posts if you’re working with AWS. - http://amp.gs/QWL9
#aws
This is a good retrospective to some useful blog posts if you’re working with AWS. - http://amp.gs/QWL9
#aws
Amazon
Top 15 Architecture Blog Posts of 2020 | Amazon Web Services
The goal of the AWS Architecture Blog is to highlight best practices and provide architectural guidance. We publish thought leadership pieces that encourage readers to discover other technical documentation, such as solutions and managed solutions, other…
Serverless TypeScript: A Complete Setup for AWS SAM Lambdas
A workflow for creating TypeScript-based AWS Lambda functions with AWS SAM that support testing, debugging, etc. and using shared layers to package dependencies. - http://amp.gs/QaRy
#nodejs
A workflow for creating TypeScript-based AWS Lambda functions with AWS SAM that support testing, debugging, etc. and using shared layers to package dependencies. - http://amp.gs/QaRy
#nodejs
The Ultimate CSS Grid Tutorial for Beginners (With Interactive Examples)
Louis Lazaris created a CSS grid tutorial for beginners, discussing the various parts of the Grid Layout spec with lots of interactive examples. - http://amp.gs/QoPA
#css
Louis Lazaris created a CSS grid tutorial for beginners, discussing the various parts of the Grid Layout spec with lots of interactive examples. - http://amp.gs/QoPA
#css
CodeinWP
The Ultimate CSS Grid Tutorial for Beginners in 2022
A CSS grid tutorial for beginners, discussing the various parts of the Grid Layout spec with lots of interactive examples via CodePen.
Inputs and Outputs: Working With Angular Components
Learn to use Input properties and Output events to manage parent and child components - http://amp.gs/QMyM
#angular
Learn to use Input properties and Output events to manage parent and child components - http://amp.gs/QMyM
#angular
Medium
Inputs and Outputs: Working With Angular Components
Learn to use Input properties and Output events to manage parent and child components
How to Structure a Vue.js Project
There are many ways to arrange a Vue.js project folder. Here's an approach that will work for both small and large projects. - http://amp.gs/Q5P5
#vue
There are many ways to arrange a Vue.js project folder. Here's an approach that will work for both small and large projects. - http://amp.gs/Q5P5
#vue
Medium
How to structure my Vue.js project
Hi Vue.js followers. I noticed when I tried to learn something new I’m not sure how can I structure my project. What is best practice to…
Turn Google Sheets into a REST API and Use It with React
An easy way to eliminate the obstacles which have previously prevented getting all that Google Sheets data into your React app. - http://amp.gs/QQmS
#react
An easy way to eliminate the obstacles which have previously prevented getting all that Google Sheets data into your React app. - http://amp.gs/QQmS
#react
Medium
Turn Google Sheets into a REST API and use it with React
Posting data to API’s have never been easy. But have you ever used React to post form data to Google Sheets? If not, then this tutorial is…
9 (FREE) JavaScript Books That Are Well Worth Reading
Books are great, but books on subjects that evolve as fast as JavaScript can be a problem. While shiny and… - http://amp.gs/Qcpp
#javascript
Books are great, but books on subjects that evolve as fast as JavaScript can be a problem. While shiny and… - http://amp.gs/Qcpp
#javascript
Medium
9 (FREE) JavaScript Books That Are Well Worth Reading
Books are great, but books on subjects that evolve as fast as JavaScript can be a problem. While shiny and new one minute, they will be…