Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
Markdown based blog using next.js, supporting static export

Fully customizable personal portfolio and blog website made with Spring Boot
next-blog is a Markdown-based blog template built on the Next.js framework that compiles Markdown files into a blog using processmd and is designed to be cloned and used as a starting point for your own site.
next-blog is an open-source GitHub project by tscanlin that provides a minimal blog starter built on the Next.js React framework from ZEIT (now Vercel). It takes Markdown files as its input and produces a blog website, using the processmd tool to compile the Markdown into content that Next.js can render. The repository metadata notes that the project supports static export, meaning the blog can be generated as a set of pre-rendered HTML files. The project is listed in the Awesome Next.js curated list on GitHub and has 556 stars.
npm run build:content compiles the content, npm start launches the development server, and npm run build creates a production build.To run the project, clone the repository, install dependencies with npm install, then run npm run build:content to compile the Markdown content before starting the server. The README notes that build:content is required before the first npm start. After that, npm start runs the development server and npm run build produces a production build.
The repository is publicly available on GitHub and the README invites cloning it as a starting point; no pricing or license details are stated in the source. The project has 556 stars at the time of this writing.
No. The repository's TODO section lists "Add RSS feed support" as an unfinished task, so RSS is not built in. You would need to implement it yourself.
Run npm install, then npm run build:content once before the first npm start. Use npm start for development and npm run build for a production build.
Yes. The repository metadata states that next-blog supports static export, so after building you can deploy the generated static HTML files to a static hosting provider.