Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 3 days 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 (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-04T04:49:53.000Z (over 1 year ago)
- Last Synced: 2024-11-13T21:46:28.995Z (4 days 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: 3
- 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
```