https://github.com/airbnb/backpack
A pack of UI components for Backbone projects. Grab your backpack and enjoy the Views.
https://github.com/airbnb/backpack
Last synced: about 1 month ago
JSON representation
A pack of UI components for Backbone projects. Grab your backpack and enjoy the Views.
- Host: GitHub
- URL: https://github.com/airbnb/backpack
- Owner: airbnb
- License: other
- Created: 2012-02-06T23:09:49.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2023-03-04T01:08:10.000Z (over 2 years ago)
- Last Synced: 2025-08-29T06:33:19.883Z (about 1 month ago)
- Language: HTML
- Homepage: http://airbnb.github.io/backpack/
- Size: 1.37 MB
- Stars: 223
- Watchers: 114
- Forks: 26
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## This project is deprecated and no longer being maintained.
______ _ _ _ |
| ___ \ | | | | (_) | A pack of UI components for Backbone projects.
| |_/ / __ _ ___| | ___ __ __ _ ___| | __ _ ___ | Grab your backpack and enjoy the Views.
| ___ \/ _` |/ __| |/ / '_ \ / _` |/ __| |/ / | / __| |
| |_/ / (_| | (__| <| |_) | (_| | (__| < _| \__ \ |
\____/ \__,_|\___|_|\_\ .__/ \__,_|\___|_|\_(_) |___/ |
| | _/ | |
|_| |__/ |### Visit the [Backpack.js User Guide](http://airbnb.github.io/backpack/)
## Quick Start
1. `git clone git@github.com:airbnb/backpack.js.git`
1. `cd backpack.js && open example/index.html`----------------------------
## Hack on Backpack
### Quick Start
1. `git clone git@github.com:airbnb/backpack.js.git`
1. `cd backpack.js && npm install`### Cake Build Tools
The Cakefile defines the following tasks:
cake compile # Compile CoffeeScript source files
cake build # Creates /lib_path/Backpack-bundle.js & /lib_path/Backpack-bundle.min.js & /lib_path/js/*.js
cake test # Opens Jasmine SpecRunner. Watches BackpackSpec-Bundle.js for changes
cake docs # Generate annotated source code with Docco
cake watch # Recompile CoffeeScript source files when modified to Backpack-bundle.js
cake watch:js # Recompile CoffeeScript source files when modified to individual .js files### Testing
Backpack.js tests are written using [jasmine](http://pivotal.github.com/jasmine/) with [sinon.js](https://github.com/cjohansen/Sinon.JS) and [jasmine-sinon](https://github.com/froots/jasmine-sinon).
You can run the test suite with `cake test`.