https://github.com/penge/maren
A simple, fast, customizable, theme-based static site generator written in Nodejs.
https://github.com/penge/maren
blog html maren markdown md npm npm-package render static-site-generator template theme
Last synced: about 1 year ago
JSON representation
A simple, fast, customizable, theme-based static site generator written in Nodejs.
- Host: GitHub
- URL: https://github.com/penge/maren
- Owner: penge
- License: mit
- Created: 2019-09-28T13:39:54.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-04T04:49:53.000Z (over 3 years ago)
- Last Synced: 2025-03-24T14:39:35.082Z (about 1 year ago)
- Topics: blog, html, maren, markdown, md, npm, npm-package, render, static-site-generator, template, theme
- Language: JavaScript
- Homepage: https://maren.io
- Size: 97.7 KB
- Stars: 9
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Maren
**A simple, fast, customizable, theme based static site generator.**
# [-> Documentation](https://maren.io)
# Install
### Global
```
~ $ npm install -g maren
```
### Local (preferred)
```
~ $ mkdir myblog
~ $ cd myblog
~/myblog $ npm init -y
~/myblog $ npm install maren
```
# CLI
```
~/myblog $ npx maren init
~/myblog $ npx maren build
~/myblog $ npx maren watch
~/myblog $ npx maren serve [--port]
```
# Folder structure
```
.gitignore
/_build # Generated, don't touch
/documents
/draft
/static
/themes
/maren.json
/package-lock.json
/package.json
```