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.
- Host: GitHub
- URL: https://github.com/sord-dev/nextjs-markdown-blog-ssr
- Owner: sord-dev
- Created: 2022-08-16T20:28:19.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-18T22:08:43.000Z (over 2 years ago)
- Last Synced: 2025-02-11T15:53:08.140Z (3 months ago)
- Topics: css, nextjs, seo-optimization, server-side-rendering
- Language: JavaScript
- Homepage: https://portfolio-update-lyart.vercel.app
- Size: 8 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```