Node Blogger

A static blog generator for Node.js.

This project is maintained by qawemlilo

Node Blogger is a light weight blog generator for Node.js that I created out of my frustrations with WordPress's bloatedness and never-ending updates.

Build Status

Features

DEMO: http://blog.ragingflame.co.za

Installation

First you need to download the repo

git clone https://github.com/qawemlilo/node-blogger.git

Then install dependencies

cd node-blogger && npm install

After installing dependencies, link the executable script to access it via the commandline

npm link

This will create a global command called blogger, use it to set up the basic configs for your blog. This process will update config.json with your data.

# blogger [command]
blogger setup 

Note: You can run the script directly: node bin/blogger [command].

How it works

Node Blogger is super easy to use once you have installed it as shown above. When you create a new post, the data is logged in posts.json, which is our pseudo-database.

Create a new post from the commandline:

blogger new

# prompt
Title: My NodeJS adventures
Description: This is a brief description about the new post.
Categories: node.js, javascript
Date: 

A new markdown file is created with some placeholding text. You can find that file in the posts directory, use it to write your post.

After you have finished writing your post in markdown format, compile it to html.

blogger build

Awesome! Now let's fire up the server.

node server.js

That's it, your blog in now up and running!

Testing

 npm test

Dependencies

Customisation

You can customise your blog by editing files in the template directory. Node blogger uses EJS for templating, template/index.ejs holds the template for the home page and template/post.ejs holds the template for posts.

Routing

The routes.js file contains the connect middleware for handling http requests.

Commands

Server

server.js contains our http server which makes our blog posts available and accessible via a browser.

Contributing

Fork and send me a pull request. Do not develop on the master branch.

Credits

Node blogger was inspired by this post on http://tutorialzine.com.

License

(MIT License)

Copyright (c) 2013 Qawelesizwe Mlilo qawemlilo@gmail.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.