Skip to content

jxson/haiku

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

haiku

NPM

Another static site generator.

build status Dependency Status

Haiku compiles Markdown, Mustache, and any of your other assets to a static site via a CLI or a Node.js code API. This project is very much still a WIP. If you want to contribute hit me up on github or irc.

Install

With npm do:

npm install haiku -g

Example

API Methods

var haiku = require('haiku')

var h = haiku([src || options])

Create an instance of haiku using the src path or an options object, if the options or src are omitted the defaults described below are applied.

  • src: The source of the project or site, defaults to process.cwd()
  • content-dir: the content directory where the markdown content lives. Defaults to the cwd + '/content'
  • build-dir: where the compiled site will be saved to. Defaults to the cwd + '/build'
  • templates-dir: layouts and additional templates go here, Defaults to the cwd + '/templates'
  • public-dir: static content that does not need to be compiled can be saved, will get merged into the build directory at compile time. Defaults to the cwd + '/public'

h.opt(option[, value])

Sets or gets individual haiku options for this instance. For getting the value of an option:

h.opt('src') //=> /path/to/yoursite.com

For setting values pass in the option name and the value you want it set to:

h.opt('src', '/var/www')

h.get([url || name], callback)

Gets the page with the corresponding url or name. Callsback with error and page arguments.

h.get('/index.html', function(error, page){
  if (err) throw err
  console.log(page)
})

It is also possible to ask for pages by name:

h.get('/my-page.md', function(error, page){
  if (err) throw err
  console.log(page)
})

Contributing

Haiku is an OPEN Source Project so please help out by reporting bugs or forking and opening pull requests when possible.

License (MIT)

Copyright (c) Jason Campbell ("Author")

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.

About

Another static site generator.

Resources

License

Stars

Watchers

Forks

Packages

No packages published