A Server Side Rendered (SSR) Markdown Blog made in NextJS
This project has taught me about NextJS' static and server side rendering capabilities and how advantageous this is to have as compared to a normal SPA (single page application) when creating a website.
NextJS takes the advantages of Client Side Rendering with no reloads and others and combines them with the advantages of Server Side Rendering and Static Static Site generation for SEO and speed.
- Markdown blog
- Server Side Rendered pages
- Blog category sort
- SEO optimised
- Adding a CMS for blog posts
- Adding more content
-
To get the sample code from GitHub, use the
git clone
command to get a local copy of the remote repository. To clone the sample code, run the following command:$ git clone [https://github.com/sord-dev/nextjs-markdown-blog-ssr.git]
-
Install dependencies
$ cd [nextjs-markdown-blog-ssr] $ npm i
-
Launch the developer server
$ npm run dev