Skip to content

Latest commit

 

History

History
42 lines (27 loc) · 1.12 KB

README.md

File metadata and controls

42 lines (27 loc) · 1.12 KB

nextjs-markdown-blog-ssr

A Server Side Rendered (SSR) Markdown Blog made in NextJS

Lessons Learned

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.

Features

  • Markdown blog
  • Server Side Rendered pages
  • Blog category sort
  • SEO optimised

Potential Future Features

  • Adding a CMS for blog posts
  • Adding more content

Cloning this repo

  1. 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]
  2. Install dependencies

    $ cd [nextjs-markdown-blog-ssr]
    $ npm i
  3. Launch the developer server

    $ npm run dev