1
Fork 0
blog/_posts/2011-01-23-static-blog-system-improved.markdown
2011-09-02 21:41:18 +02:00

1.3 KiB

layout title
post static blog system improved

My static blog system script now launches a small web server and auto-updates on a file change. This way you've got a live preview directly in your browser.

As the inital script was written in Javascript, I wrote the rest in Javascript, too.

The whole runs on node.js and uses some fancy modules:

  • paperboy for static file delivery (the css file)
  • socket.io-node as the websocket server
  • socket.io injected into the html, so the website auto-reloads when informed through the server

The whole combination is amazingly fast, the updated text nearly appears in realtime.

You can find the script here: watch.js. It's more like a quick hack and not fully tested. It may crash whenever it will, but for now it works for me :)

The small app.js is just this:

socket = new io.Socket('localhost');
socket.connect();
socket.on('message', function(data){
  data = JSON.parse(data);
  if(data.reload)
    window.location.reload();
});

{:lang="javascript"}

So next thing: individual pages for posts, maybe templates.