Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adzialocha/static-generator
Node command line application equipped with great tools for generating the most simple static pages
https://github.com/adzialocha/static-generator
babel es6 html markdown nunjucks scss static-site-generator
Last synced: 27 days ago
JSON representation
Node command line application equipped with great tools for generating the most simple static pages
- Host: GitHub
- URL: https://github.com/adzialocha/static-generator
- Owner: adzialocha
- License: mit
- Created: 2017-10-29T18:42:00.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2021-12-02T13:40:13.000Z (almost 3 years ago)
- Last Synced: 2024-09-28T17:04:41.958Z (about 1 month ago)
- Topics: babel, es6, html, markdown, nunjucks, scss, static-site-generator
- Language: JavaScript
- Homepage:
- Size: 388 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
static-generator
======Node command line application equipped with great tools for generating the most simple static pages.
## Features
- *ES6* js via babelify and *module support* with browserify
- Write your stylesheets in *scss*
- Manage content in *markdown* and meta data in *json* files
- Rich template inheritance, filters, etc. via *nunjucks*
- Generates simple and *minified* css, js and html## Usage
Install `static-generator` as a global tool or include it as a dependency to your static page project (probably together with a *serve* and *watch* task).
```
npm i -g static-generatorstatic-generator new [--source_dir "./_src"]
static-generator build [--source_dir "./_src"] [--output_dir "./"]
static-generator clear [--source_dir "./_src"] [--output_dir "./"]
```## Project structure
Run `new` task to create a starter template folder structure. Every project follows a similar structure like this (files and folders marked with * are needed):
```
index.md * (root content)
data.json * (global meta data, can be used in templates)
assets/ *
scripts/ *
app.js * (entry js file)
form.js
...
styles/ *
app.scss * (entry scss file)
layout.scss
slider.scss
...
images/ *
favicon.ico
...
views/ *
about/
index.md
data.json
contact/
index.md
data.json
... more subviews
index.md
data.json
layout/ *
default.html * (main layout file)
navigation.html
... more partials
```## License
`MIT`