https://github.com/timbokz/blitz
Dead simple static website generator using Node and Pug. (Discontinued)
https://github.com/timbokz/blitz
Last synced: over 1 year ago
JSON representation
Dead simple static website generator using Node and Pug. (Discontinued)
- Host: GitHub
- URL: https://github.com/timbokz/blitz
- Owner: TimboKZ
- License: gpl-3.0
- Created: 2016-11-11T21:25:43.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-12-26T12:14:34.000Z (over 8 years ago)
- Last Synced: 2025-03-22T15:02:22.833Z (over 1 year ago)
- Language: TypeScript
- Homepage: https://blitz.kawaiidesu.me/
- Size: 928 KB
- Stars: 5
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 
[](https://badge.fury.io/js/blitz-ssg)
[](https://www.npmjs.com/package/blitz-ssg)
[](https://www.npmjs.com/package/blitz-ssg)
[](https://travis-ci.org/TimboKZ/blitz)
[](https://coveralls.io/github/TimboKZ/blitz?branch=development)
Blitz is a dead simple yet powerful static site generator using Node.js, Pug and bits of YAML here and there.
Documentation can be found on [Blitz's website](https://getblitz.io/). You might also be interested in the
[quick start guide](https://getblitz.io/docs/0.1/getting-started-template/).
## Super quick start
Install Blitz once you have [Node.js and npm](https://docs.npmjs.com/getting-started/installing-node) ready:
```bash
npm install -g blitz-ssg
```
Create a new directory, enter it and initialise a Blitz project using the `portfolio` template:
```bash
mkdir blitz-example
cd blitz-example
blitz init -t portfolio
```
Build the static site using Blitz:
```bash
blitz build
```
And you're done! Open `index.html` from the newly generated `build` directory in your favourite browser to view the
website you've just generated. For more templates, check out [this page](https://getblitz.io/docs/0.1/getting-started-template/).
## Developers
This repository contains the source code of Blitz app, do **not** clone it if you want to use Blitz as opposed to
helping developing it. For an example website built using Blitz, consider [the source code](https://github.com/TimboKZ/blitz-website)
of Blitz's official website.
I suggest you make use of `tslint.json` provided in this repository to ensure consistent coding style.