0.1.0 • Published 8 years ago

breadbox v0.1.0

Weekly downloads
1
License
ISC
Repository
-
Last release
8 years ago

Breadbox

Breadbox is an MVC framework for Node.js web apps. Unlike Express, Breadbox is an attempt to cover all the requirements of a simple website with one small dependency. It provides a great way to get up and running with a data store, user authentication, a template engine, POST request processing, and an admin interface all with just one npm install.

Read the docs.

Hello World

// index.js

const breadbox = require('breadbox');

breadbox({
    controllers: {
        '/index': resolve => {
            resolve({ person: "World" });
        }
    }
});
<!-- index.html -->

<h1>Hello, <:person:>!</h1>

Run node index then open http://localhost:1337 in your browser.

0.1.0

8 years ago

0.0.10

8 years ago

0.0.9

8 years ago

0.0.8

8 years ago

0.0.7

8 years ago

0.0.6

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago