Skip to content
This repository was archived by the owner on Jul 22, 2025. It is now read-only.

Commit d12c38c

Browse files
author
Eli Skeggs
committed
feat: initial release
1 parent 7d595e6 commit d12c38c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+6811
-11306
lines changed

.eslintignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1+
/boddle*
12
/docs
3+
/node_modules
4+
/test/vendor
5+
/test

.eslintrc.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,9 @@
88
},
99
"env": {
1010
"browser": true,
11+
"es6": true,
1112
"node": true
1213
},
13-
"globals": {
14-
"Promise": false
15-
},
1614
"rules": {
1715
"prettier/prettier": "error",
1816

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## How to Open a Backbone.js Ticket
1+
## How to Open a Ticket
22

33
- Before you open a ticket or send a pull request,
44
[search](https://github.com/mixmaxhq/boddle/issues) for previous discussions

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,15 @@ https://github.com/broofa
1818
```sh
1919
$ npm i -P boddle
2020
```
21+
22+
## notable differences
23+
24+
- No support for `View`, `Router`, `History`.
25+
- Does not use jQuery or underscore.
26+
- Does not support `Model#mixin` or `Collection#mixin`.
27+
- Does not provide a global event bus (e.g. `Backbone.trigger` on global `Backbone`).
28+
- Exports setter functions for previously-rewriteable exports:
29+
- `ajax` -> `setAJAXImplementation`
30+
- `emulateHTTP` -> `setEmulateHTTP`
31+
- `emulateJSON` -> `setEmulateJSON`
32+
- `sync` -> `setSyncImplementation`

backbone-min.js

Lines changed: 0 additions & 2 deletions
This file was deleted.

backbone-min.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)