awscms

0.2.6 • Public • Published

Awscms

Say it with me: awh-s'ms

Awscms is a Connect middleware that serves Handlebars templates from an Amazon S3 bucket.

Made by Matt Brennan at import•io.

Installing

npm install awscms

Using

The setup

app.use.apply(app, Awscms.middleware({
        prefix: '/awscms',
        access-key-id: "",
        secret-access-key: "",
        bucket: "bucket-name"
}))
 

page.htm

{{#extends "base"}}
{{> header}}
<ol>
    {{#each list}}
    <li>{{.}}
    {{/each}}
</ol>
{{/extends}}

page.json

{
    "list": [
        "Is amazing",
        "Will save your life"
    ]
}

header.part

<h1>Awscms</h1>

base.htm

<!doctype html>
 
{{{body}}}

The request

GET /awscms/page

The response

Well, what do you think?

Licence

Awscms is released under the MIT licence. ©2013 import•io

Readme

Keywords

none

Package Sidebar

Install

npm i awscms

Weekly Downloads

18

Version

0.2.6

License

none

Last publish

Collaborators

  • quarterto