This project is only a prototype for now. And I'm really having fun building it.
-
Setup a Node.js server of your own.
-
Clone this repo to your local git.
-
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
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