An open API service indexing awesome lists of open source software.

https://github.com/sord-dev/nextjs-markdown-blog-ssr

Next,js SSR (Server Side Rendered) Markdown blog.
https://github.com/sord-dev/nextjs-markdown-blog-ssr

css nextjs seo-optimization server-side-rendering

Last synced: about 2 months ago
JSON representation

Next,js SSR (Server Side Rendered) Markdown blog.

Awesome Lists containing this project

README

        

# 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:

```bash
$ git clone [https://github.com/sord-dev/nextjs-markdown-blog-ssr.git]
```


2. Install dependencies
``` bash
$ cd [nextjs-markdown-blog-ssr]
$ npm i
```

3. Launch the developer server
``` bash
$ npm run dev
```