I had this personal project because I saw the self-made blog my coworker made is awesome. Then I was lucky to have a predecessor to teach me how to do this project. However, trust me, node is hard, it's really pain in the rear. It almost killed me several times. Fortunately I made it, and to be honest once you set up everything for node.js, it can provide you with lots of awesome useful functionalities. I am sure if you want to learn something about node.js, you will suffer from it, but after you are done it, you will be very proud of yourself.

I try to be a nerd every month(try to post a new technical related passage every month). I should have posted this blog last month, I was so busy with my new semester. BTW, I miss my summer so much!!!

Check my personal blog website with http://myblog.hanbingyan.net/

Get My Self-made Blog Using node.js


First of all, I have to say there are lots of ways you can use to make your personal blog which means you can definitely find another approach to generate static site for blog. I might choose the hardest way cos it's related to node.js, and most important is, I am generally a nerd, you don't need to be lol. I will try my best to introduce how to use this dumbest way.

Actually node.js has very rich content and powerful function, metalsmith is just very small part of it. At very beginning of your project, you need to install node in your computer. It's better to develop this project within Linux or Mac. A simple tutorial to play with node.js if you didn't have any experience for it:

Get My Self-made Blog Using node.js

All of the logic in Metalsmith is handled by plugins. You simply chain them together. Just like the previous picture I showed .use(xxx), xxx represents the tool you want to use. Let's go into some detail of metalsmith:

Metalsmith has rich material. I recommend you should check http://www.metalsmith.io/, it shows all the plugins you can use in metalsmith and each one has tutorial of how to use and source code which can help you understand.