# emvc

> Powerful MVC web framework for Node.js using Express

Latest version **0.7.0** (published 2016-06-11) · 0 weekly downloads

## Install

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

## 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.7.0 |
| Published | 2016-06-11 |
| First published | 2016-06-03 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >= 0.10.0 |
| Dependencies | 14 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | Nicholas Penree |
| Maintainers | drudge |
| Keywords | express, connect, web, mvc, rails |

## Links

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

## Dependencies (14)

- [debug](https://npm.io/package/debug.md) ^2.2.0
- [mkdirp](https://npm.io/package/mkdirp.md) ^0.5.1
- [express](https://npm.io/package/express.md) ^4.13.4
- [pkginfo](https://npm.io/package/pkginfo.md) ^0.4.0
- [scripts](https://npm.io/package/scripts.md) ^0.1.0
- [bootable](https://npm.io/package/bootable.md) ^0.2.4
- [co-prompt](https://npm.io/package/co-prompt.md) ^1.0.0
- [commander](https://npm.io/package/commander.md) ^2.9.0
- [mime-types](https://npm.io/package/mime-types.md) ^2.1.11
- [emvc-router](https://npm.io/package/emvc-router.md) ^0.2.0
- [syntax-error](https://npm.io/package/syntax-error.md) ^1.1.6
- [utils-flatten](https://npm.io/package/utils-flatten.md) ^1.0.0
- [parent-require](https://npm.io/package/parent-require.md) ^1.0.0
- [bootable-environment](https://npm.io/package/bootable-environment.md) ^0.2.0

## Alternatives

- [@opentelemetry/exporter-zipkin](https://npm.io/package/@opentelemetry/exporter-zipkin.md) — 14.8M weekly downloads
- [pusher-js](https://npm.io/package/pusher-js.md) — 2.0M weekly downloads
- [browserify](https://npm.io/package/browserify.md) — 1.7M weekly downloads
- [sqs-consumer](https://npm.io/package/sqs-consumer.md) — 1.7M weekly downloads
- [@sanity/eventsource](https://npm.io/package/@sanity/eventsource.md) — 930.8K weekly downloads

## Recent versions

- 0.7.0 (latest) — 2016-06-11
- 0.6.4-alpha — 2016-06-03
- 0.6.3-alpha — 2016-06-03
- 0.6.1-alpha — 2016-06-03

## README

# emvc

[![Build Status](https://travis-ci.org/emvc/emvc.svg?branch=master)](https://travis-ci.org/emvc/emvc)
[![Coverage Status](https://coveralls.io/repos/github/emvc/emvc/badge.svg?branch=master)](https://coveralls.io/github/emvc/emvc?branch=master)
[![Quality](https://codeclimate.com/github/emvc/emvc/badges/gpa.svg)](https://codeclimate.com/github/emvc/emvc)
[![Dependencies](https://david-dm.org/emvc/emvc.png)](https://david-dm.org/emvc/emvc)


emvc is a framework that brings structure and MVC patterns to web
applications using [Node](http://nodejs.org) and [Express](http://expressjs.com/).

## Installation

    $ npm install emvc

## Quick Start

`emvc`, the command line interface to emvc, can be used to generate a
starter application.  To use it, install the `emvc-generator` package globally.

    $ npm install emvc-generator -g

Next, create an application and install dependencies.

    $ emvc hello
    $ cd hello
    $ npm install

Start the server.

    $ node server

The application is available at [localhost:3000](http://localhost:3000).

Start the server with node debug mode

	$ node --debug server
	$ node --debug-brk server

Then you can use debug tools like [node-inspector](https://github.com/dannycoates/node-inspector) to debug your application as usual.

## Guide

The [emvc Guide](http://emvc.github.io/emvc/guide/) is the official source
for documentation, and is a handy reference to have available when developing
web applications powered by emvc.

## Datastore Adapters

<table>
  <thead>
    <tr><th>Adapter</th><th>Description</th><th>Developer</th></tr>
  </thead>
  <tbody>
    <tr><td><a href="https://github.com/jaredhanson/locomotive-mongoose">Mongoose</a></td><td>Mongoose ODM adapter.</td><td></td></tr>
  </tbody>
</table>

## Tests

    $ npm install
    $ make test

## Credits

  - [Nicholas Penree](http://github.com/drudge)
  - [Sérgio Ramos](http://github.com/ramitos)
  - [Jared Hanson](http://github.com/jaredhanson)

## License

(The MIT License)

Copyright (c) 2016 Nicholas Penree

Based on work Copyright (c) 2011 Jared Hanson

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

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