Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 755 Bytes

README.md

File metadata and controls

38 lines (24 loc) · 755 Bytes

A simple blog engine using Node.js

Note

This project is only a prototype for now. And I'm really having fun building it.

Requirements

  1. Setup a Node.js server of your own.

  2. Clone this repo to your local git.

  3. Get the server up and running. We need it to parser markdown content into html and send to the front-end.

node path/to/md2html/parser.js

Personally I'm using pm2.

pm2 start path/to/md2html/parser.js

Composing

With your beloved markdown.

> cd /path/to/posts
> vim my-first-post.md

> # Hello world!
> :wq

> git add my-first-post.md
> git commit -m "first post using this simple blog engine"
> git push

And shining there are your lovely words.