Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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);
```