gobengo / indieweb

A server to host your indie-things
1 stars 0 forks source link

indieweb

A JavaScript library (and runnable server/process) for hosting your own #indieweb.

What is an indieweb?

Great question. That has an evolving answer.

Currently

Future

Run it

make server

Restart on file changes with make watch.

Configuration

Configuration is accomplished with both config files (in ./config) and environment variables. Environment Variables have a higher priority.

Configuration defaults are loaded from defaults.json.

Accepted configuration parameters:

Use in another webapp

If you prefer, you can use indieweb as a library.

Install with npm install --save indieweb.

Use like any other express app.

const yourApp = require('express')();
const indiewebConfig = {};
yourApp.use('/indieweb', require('indieweb')(indiewebConfig))

Want a feature?

File an issue