0.1.0 • Published 9 years ago

breadbox v0.1.0

Weekly downloads
1
License
ISC
Repository
-
Last release
9 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

9 years ago

0.0.10

9 years ago

0.0.9

9 years ago

0.0.8

9 years ago

0.0.7

9 years ago

0.0.6

9 years ago

0.0.5

9 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago