Latest Articles
Logging using Serilog- ASP .Net Core 5
Serilog is a structural logging library for Microsoft .Net and has become the preferred logging library for .Net applications. I used Asp .Net core Web Application to configure the serilog. I created logs in a text file and on the console.
By Nishant
Last updated December 16, 2021
CSS Variable
CSS Variables can be declared in a CSS Selector to define the CSS Scope. For use Globally, we can use body selector or: root. The CSS Variable must be begun with dashes like (–), and CSS variable is case sensitive.
React Context API
In a typical React application, data is passed top-down (parent to child) via props, but this can be cumbersome for specific props (e.g. locale preference, UI theme) required by many components within an application. Context provides a way to share values like these between components without explicitly passing a prop through every level of the tree.
By Tanveer Ahmad
Last updated December 16, 2021
Introducing Angular 9/10 HttpClient Module
The newer HttpClient module is an improved version of the HTTP client API within the @angular/common/HTTP package.
By Puneer Arora
Last updated December 16, 2021
Data binding in React Js
Two data binding means, the data we changed in the view has updated the state & the data in the form has updated the view.