Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ben-wormald/stable
Generate a static website from simple templates and dynamic data
https://github.com/ben-wormald/stable
framework generator html static-site template
Last synced: 14 days ago
JSON representation
Generate a static website from simple templates and dynamic data
- Host: GitHub
- URL: https://github.com/ben-wormald/stable
- Owner: Ben-Wormald
- License: isc
- Created: 2021-04-25T19:02:47.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-09-02T15:17:45.000Z (about 3 years ago)
- Last Synced: 2024-09-23T20:48:38.650Z (about 2 months ago)
- Topics: framework, generator, html, static-site, template
- Language: JavaScript
- Homepage:
- Size: 104 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Stable
Stable generates a static website from simple templates and dynamic data, ideal for a lightweight
personal site.# Usage
```sh
npm i stable-js
``````javascript
const { hydrate } = require('stable-js');const options = {};
const data = {};
hydrate(options, data);
```