Ashutosh Kukreti

Scaffolding the Next.js App (Part - 2) Members Public

In this series, I am rewriting the code of my blog ashutosh.dev in Next.js and Mojolicious as backend. This is the third article of the series. To do this, we downloaded all of our articles from the dev web app (JSON file is under the data folder). You

Ashutosh Kukreti
Next.Js

Scaffolding the Next.js App Members Public

In this series, I am rewriting the code of my blog (ashutosh.dev) in Next.js and Mojolicious as backend. This is the second article of the series. In this article, we cover How to configure the storybookConfigure the TailwindCSSAdd SEO friendly _document.jsCreate basic componentsConfigure StorybookIn our last article,

Ashutosh Kukreti
Next.Js

Setting Up Next.Js with Storybook, Tailwindcss and Apollo client Members Public

In this series, I am rewriting the code of my blog (ashutosh.dev) in Next.js and Mojolicious as backend. This is the first article of the series.

Ashutosh Kukreti
JavaScript

It's All About (The) Next.js Api routes (Part-2) Members Public

This article focused on retrieving the data from the database (in the Next.js api routes) and return the JSON object to the browser. It proves Next.js is absolutely a full-stack framework.

Ashutosh Kukreti
Next.Js

It's All About (The) Next.js api routes Members Public

When you create the Next.js application, you can see the "api" folder. Before proceedings, a few things about the API folder. It is to write the server-side code for our application.

Ashutosh Kukreti
Next.Js

How to Improve SEO in Next.js Members Public

In this article, we learn how to make an SEO-friendly Next.js application. First of all, we need to create the Next.js app. If you are new to Next.js, please follow this post to generate Next.js application scaffolding.

Ashutosh Kukreti

Two Ways You Can fetch client-side data in Next.Js Members Public

In Next.js, sometimes pre-rendering the page doesn't make sense and, it is the need of the hour to fetch the data on the client-side. For ex- the frequently updating data like the stock data, or the currency exchange prices, or the commodities prices.

Ashutosh Kukreti
Next.Js

Howdy NextJS getServerSideProps()? Members Public

In Next.js, There are two ways to pre-render a page: Static Server-Side Pre-rendering

Ashutosh Kukreti
Next.Js