2.1.0 • Published 8 years ago
ssb-webify v2.1.0
ssb-webify
convert a local file hierarchy into a scuttlebutt website
CLI Usage
Static website (one-time publish)
$ npm install --global ssb-webify
$ mkdir my_site
$ echo '<h1>hello world</h1>' > my_site/index.html
$ ssb-webify publish my_site
Published static website: &WIH358/QoylVo+BwGxUWu3WzyaVVAMYvFnhdzGG8Uwo=.sha256 (%26WIH358%2FQoylVo%2BBwGxUWu3WzyaVVAMYvFnhdzGG8Uwo%3D.sha256)Dynamic website (can edit; same URL)
$ npm install --global ssb-webify
$ mkdir my_site
$ echo '<h1>hello world</h1>' > my_site/index.html
$ ssb-webify init
Initialized new ssb-web site: %aH7TzpolO4FmTQxOVyCeHI2QJavv6amL2xgLBIEk8Ro=.sha256 (%25aH7TzpolO4FmTQxOVyCeHI2QJavv6amL2xgLBIEk8Ro%3D.sha256)
$ ssb-webify publish my_site
Published dynamic website: %aH7TzpolO4FmTQxOVyCeHI2QJavv6amL2xgLBIEk8Ro=.sha256 (%25aH7TzpolO4FmTQxOVyCeHI2QJavv6amL2xgLBIEk8Ro%3D.sha256)
$ echo '<h1>hello world</h1><p>version two</p>' > my_site/index.html
$ ssb-webify publish my_site
Published dynamic website: %aH7TzpolO4FmTQxOVyCeHI2QJavv6amL2xgLBIEk8Ro=.sha256 (%25aH7TzpolO4FmTQxOVyCeHI2QJavv6amL2xgLBIEk8Ro%3D.sha256)You can plug the resulting web hash (the one in parentheses) into any ssb software that supports websites (currently only patchfoo and public ssb-viewerss) and view it.
The resolver takes care of
recursively looking up blobs to find the webpage or file you want to view and
calls it up from your local sbot.
API
You can also use this module as an API.
var webify = require('ssb-webify')webify.publish(filename, cb)
Recursively webify and publish filename, which is a file or directory. cb
is called with the signature cb(err, id), where id is the ssb blob id of the
website root.
Right now this only publishes the blobs (ie. a static website).
webify.init(cb)
Publishes a web-init message to sbot and returns the key.
License
ISC