Skip to content

Commit

Permalink
Stable Version 0.4.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmdobry committed Sep 27, 2014
1 parent c199cb2 commit e057429
Show file tree
Hide file tree
Showing 13 changed files with 437 additions and 446 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
language: node_js
node_js:
- "0.10"
- "0.11"
before_install:
- npm install -g bower
- bower install
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
##### 0.4.0 - 27 September 2014

###### Breaking API changes
- Refactored from `baseUrl` to `basePath`, as `baseUrl` doesn't make sense for all adapters, but `basePath` does

##### 0.1.0 - 16 September 2014

Initial release
30 changes: 22 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<img src="https://raw.githubusercontent.com/js-data/js-data/prototype/js-data.png" alt="js-data logo" title="js-data" align="right" width="64" height="64" />
<img src="https://raw.githubusercontent.com/js-data/js-data/master/js-data.png" alt="js-data logo" title="js-data" align="right" width="64" height="64" />

## js-data-firebase

Firebase adapter for js-data.
Firebase adapter for [js-data](http://www.js-data.io/js-data).

## Documentation
[http://www.js-data.io/js-data-firebase](http://www.js-data.io/js-data-firebase)
## API Documentation
[DSFirebaseAdapter](https://github.com/js-data/js-data/wiki/DSFirebaseAdapter)

## Demo
[https://js-data-firebase.firebaseapp.com/](https://js-data-firebase.firebaseapp.com/)
Expand All @@ -22,23 +22,37 @@ Firebase adapter for js-data.
| Coverage | [![Coverage Status](https://coveralls.io/repos/js-data/js-data-firebase/badge.png?branch=master)](https://coveralls.io/r/js-data/js-data-firebase?branch=master) |

## Quick Start
`bower install --save js-data-firebase` or `npm install --save js-data-firebase`.
`bower install --save js-data js-data-firebase` or `npm install --save js-data js-data-firebase`.

Load `js-data-firebase.js` after `js-data.js`.

```js
var adapter = new DSFirebaseAdapter({
basePath: 'https://my-app.firebase.io'
});

var store = new JSData.DS();

store.registerAdapter('DSFirebaseAdapter', adapter, { default: true });

// "store" will now use the firebase adapter for all async operations
```

## Changelog
[CHANGELOG.md](https://github.com/js-data/js-data-firebase/blob/master/CHANGELOG.md)

## Community
- [Mailing List](https://groups.google.com/forum/?fromgroups#!forum/js-data-project) - Ask your questions!
- [Mailing List](https://groups.io/org/groupsio/jsdata) - Ask your questions!
- [Issues](https://github.com/js-data/js-data-firebase/issues) - Found a bug? Feature request? Submit an issue!
- [GitHub](https://github.com/js-data/js-data-firebase) - View the source code for js-data.
- [Contributing Guide](https://github.com/js-data/js-data-firebase/blob/master/CONTRIBUTING.md)

## Contributing

First, feel free to contact me with questions. [Mailing List](https://groups.google.com/forum/?fromgroups#!forum/js-data-project). [Issues](https://github.com/js-data/js-data-firebase/issues).
First, feel free to contact me with questions. [Mailing List](https://groups.io/org/groupsio/jsdata). [Issues](https://github.com/js-data/js-data-firebase/issues).

1. Contribute to the issue that is the reason you'll be developing in the first place
1. Fork js-data
1. Fork js-data-firebase
1. `git clone https://github.com/<you>/js-data-firebase.git`
1. `cd js-data-firebase; npm install; bower install;`
1. `grunt go` (builds and starts a watch)
Expand Down
6 changes: 3 additions & 3 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "js-data-firebase",
"description": "Firebase adapter for js-data.",
"version": "0.1.0",
"version": "0.4.0",
"homepage": "http://www.js-data.io/js-data-firebase",
"repository": {
"type": "git",
Expand Down Expand Up @@ -30,10 +30,10 @@
"karma.start.js"
],
"peerDependencies": {
"js-data": "0.0.1"
"js-data": "~0.4.x"
},
"devDependencies": {
"firebase": "~1.0.21",
"js-data": "~0.0.1"
"js-data": "~0.4.x"
}
}
Loading

0 comments on commit e057429

Please sign in to comment.