# capuchino

> Webapp framework on modern technologies

Latest version **0.0.0** (published 2015-10-25) · MIT license · 0 weekly downloads

## Install

```sh
npm install capuchino
pnpm add capuchino
yarn add capuchino
bun add capuchino
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.0 |
| Published | 2015-10-25 |
| First published | 2015-10-25 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 6 |
| Known vulnerabilities | 0 |
| Install scripts | yes |
| Author | Ragg- |
| Maintainers | ragg |

## Links

- npm: https://www.npmjs.com/package/capuchino
- Repository: https://github.com/Ragg-/capuchino
- Homepage: https://github.com/Ragg-/capuchino#readme
- Issues: https://github.com/Ragg-/capuchino/issues
- npm.io page: https://npm.io/package/capuchino

## Dependencies (6)

- [sinon](https://npm.io/package/sinon.md) ^1.17.2
- [gulp-rename](https://npm.io/package/gulp-rename.md) ^1.2.2
- [virtual-dom](https://npm.io/package/virtual-dom.md) ^2.1.1
- [gulp-sequence](https://npm.io/package/gulp-sequence.md) ^0.4.1
- [webpack-stream](https://npm.io/package/webpack-stream.md) ^2.1.1
- [disposable-emitter](https://npm.io/package/disposable-emitter.md) ^0.2.1

## Recent versions

- 0.0.0 (latest) — 2015-10-25

## README

# Capuchino [![Build Status](https://travis-ci.org/Ragg-/capuchino.svg?branch=cupedge)](https://travis-ci.org/Ragg-/capuchino)

Web app framework on Modern features.

Capuchino provides simple MV* Framework with edge features (`Object.observe`, `Virtual DOM`, and more...)

Respect `Backbone.js`, `Marionette.js`.

## Feature
Everything Work in progress

### Model
A `Plain-Object` like model.

`Capuchino.Model` works with `Object.observe` much.  (Of course, works even without Object.observe.)
Capuchino.Model has a Observer mechanism(EventEmitter) on itself.

See [Capuchino.Model Document](docs/api/model.md) for more details.

```coffeescript
class UserModel extends Capuchino.Model
    _properties :
        id : {initial : -1}
        name : {initial : ""}

# Create
user = new UserModel

# Plain-Object like
Object.keys(user) # => ['id', 'name']

# Support toJSON
user.toJSON() # {"id": -1, "name": "capuchino"}
```

And supports Backbone-like extending.
``` javascript
var UserModel = Capuchino.Model.extend({
    _properties : {
        name : { initial : "" }
    }
});
```

### View
_WIP_

### Disposers & DisposableObject
_WIP_

---
_Source: https://npm.io/package/capuchino · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
