lesson
How to Build Custom ValueEditor Components in ReactBuilding Advanced Admin Reporting in ReactPolishing off the bulk editor with a custom value editor
lesson
How to Add Features to the React onClickUpdate FeatureBuilding Advanced Admin Reporting in ReactChanging the update mechanism to cover more use cases
lesson
How to Bulk Edit Data With React Query BuilderBuilding Advanced Admin Reporting in ReactUsing React Query Builder for a completely different purpose
lesson
5 Angular Performance Optimization TipsThe newline Guide to Angular UniversalFaster! Faster! Faster! In this lesson you will enable gzip compression, defer the CSS, lazy-load images and more. All to make it faster!
lesson
How to Cache Angular With Redis Node.js MiddlewareThe newline Guide to Angular UniversalIn this lesson you will create a Node.JS middle-ware, that will be responsible for caching rendered views inside Redis database.
lesson
How to Install Redis CLI on Windows, Mac, and HerokuThe newline Guide to Angular UniversalFirst things first. Let's install the Redis DB on your machine and provision it in the Heroku environment.
lesson
How to Handle Slow API Calls in AngularThe newline Guide to Angular UniversalLong running API calls can affect your application rendering time, that might lead to the SEO disaster. In this lesson you will learn how you can protect your application against such situation.
lesson
Perform Angular HTTP Calls With TransferHttpCacheModuleThe newline Guide to Angular UniversalNext step is to get know a TransferHttpCacheModule, which provides the TransferState functionality "out of the box" for the HTTP calls.
lesson
Send Server Data to Client With Angular TransferStateThe newline Guide to Angular UniversalSay Hello to TransferState, a key-value registry that is passed along with the application bundle, from the server-side angular to the browser-side part of the application. In this lesson you will learn how frontend can get to know what backend has already do (ie retrieving data from DB); thanks to that you can avoid repeating those steps and offload your application backend.
lesson
How to Make Angular Functional With JavaScript DisabledThe newline Guide to Angular UniversalOnce you know how to read cookies in the Angular Universal app, it's time to learn how to set them up. In this lesson, you will make your application fully functional for users whose browser doesn't support JavaScript at all.
lesson
How to Read HTTP Requests With Cookies in AngularThe newline Guide to Angular UniversalNext step is to create a server-equivalent of service responsible for user interactions. This lesson will show you how to read HTTP requests in Angular, get cookies from it and decrypt them.
lesson
How to Build Server-Specific Services in Angular UniversalThe newline Guide to Angular UniversalOnce your MongoService is in place, you need to prepare a server-equivalent of ProductsService. This service will query MongoService for products list and descriptions and embed those in the HTML rendered by Angular Universal.