-
#01 – Introduction – TypeScript
What is TypeScript? TypeScript is a typed super-set of JavaScript It means that any JavaScript code is a legal TypeScript code Also we can write any JavaScript code in a…
-
#00 – Concepts and Notes – JavaScript
Following is a list of core JavaScript concepts: History Developed in 1995 by Brendan Eich Initially named as LiveScript Also known as ECMAScript JS has no concept of input or…
-
#02 – Core Concepts – Learn GraphQL
In this post, we have discussed the core GraphQL concepts e.g. schema, types, queries, mutations, and subscriptions with example codes.
-
#01 – Introduction – Learn GraphQL
In this post, we have discussed what is GraphQL, the differences between REST API’s and GraphQL API development architectures, and an example scenario to elaborate on the differences between the…
-
#02 – Data Fetching – Learn Next.js
Next.js provides three functions to fetch data for pre-rendered pages: getStaticProps(): Used for static generation (pre-rendering technique) Fetches data at build-time When an async function getStaticProps() is called from the…
-
#01 Introduction – Learn Next.js
Next.js is a framework used to develop production ready React applications. Next.js provides many useful features e.g. pre-rendering, smart bundling, dynamic file-based routing, route pre-fetching and many more. In this…
-
Ep. 001: What is HTML? Learn HTML & HTML5
This post belongs to the HTML course titled “Learn HTML & HTML5”. In this post, we have discussed what is HTML?
-
WordPress Security Checklist
Following are some general recommendations to enhance security of a WordPress website. Use a security plugin e.g. Wordfence (if not already installed) and make sure that it’s updated to the…
-
NPM Commands Not Working in Integrated Terminal of VSCode
Visual Studio Code (VSCode) provides an integrated terminal to run commands inside the current directory. Recently, I installed VSCode and tried to run the NPM commands and it shows following…
-
Common PHP Warnings/ Errors and their Solutions
Recently, we have updated our PHP version to the latest stable version (7.4.9) for our WordPress website. After the update we started getting PHP warnings. We have listed some of…
-
Get Started with Redux in React Application
Create a file src/store/index.js and add following code in it: To link our app with the redux store update the main app file as follows:
-
Angular Concepts
In this blog post, we have discussed some JavaScript and Angular concepts.