/blog

Single page blog application backed by Node.js based server

Primary LanguageCSS

NOT MAINTAINED, Could be used as example of how to build SPA with Node.js.

This is source code for my blog which is a Single Page App (SPA) and Node.js based server.

Blog posts are .markdown files in ./articles folder with couple additions to .MARKDOWN syntax:

  1. Footnotes syntax supported:

     [^1]
     [^1] Footnote 1
     
  2. Post attributes could be specified as:

     Author: Mark Twain
     Slug: great_article
     Title: Great Article
     Date: 09/28/2013
    
     Rest of .markdown here
     

See an online example at http://afurmanov.com

I wrote it to get a sense what is:

  • Build a complete SPA not based on any framework (Ember.js, Backbone, Angular, etc.). It still uses MVC pattern to organize client side logic.

  • Create a Node.js application where dataflow is built around Promises