https://github.com/cdata/promenade
Promenade is a Backbone++ MVC experiment.
https://github.com/cdata/promenade
Last synced: 5 months ago
JSON representation
Promenade is a Backbone++ MVC experiment.
- Host: GitHub
- URL: https://github.com/cdata/promenade
- Owner: cdata
- License: other
- Created: 2014-11-12T00:32:58.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-11-05T03:07:45.000Z (about 11 years ago)
- Last Synced: 2025-09-07T02:02:11.854Z (5 months ago)
- Size: 1.7 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: MIT-LICENSE.txt
Awesome Lists containing this project
README
# Promenade
Promenade is a Backbone++ MVC framework, intended to support the rapid development of single-page JavaScript applications. It builds upon Backbone's provided classes, while following closely to Backbone semantics and staying as minimal and declarative as possible. It is relatively more prescriptive than Backbone with the goal of establishing stronger, oft-rewritten conventions in some core areas.
## Building
Promenade's build and testing steps depend on `node`, `npm`, `bower` and `grunt`.
In order to bootstrap your environment to build Promenade and related documentation, please run:
```sh
npm install
bower install
```
To build the libraries, please run:
```sh
grunt build
```
## Testing
In order to run Promenade tests, please run:
```sh
grunt test
```