forage-query

0.1.1 • Public • Published

forage-query

Build Status

Query builder for localForage using JavaScript implementation of MongoDB query language

Guide

Install

Browser

$ bower install --save forage-query

Node

$ npm install --save forage-query

Usage

  • Include forage-query into your app index.html
<!doctype html>
<html class="no-js">

<head>
    <meta charset="utf-8">
    <title></title>
    <meta name="description" content="">
    <meta name="viewport" content="width=device-width">
</head>

<body>
    <!-- build:js(.) scripts/vendor.js -->
    <!-- bower:js -->
    <script src='bower_components/localforage/dist/localforage.js'></script>
    <script src='bower_components/node-uuid/uuid.js'></script>
    <script src='bower_components/lodash/lodash.js'></script>
    <script src='bower_components/Faker/build/build/faker.js'></script>
    <!-- end development dependencies -->
    <script src="dist/forageQuery.js"></script>
    <!-- endbower -->
    <!-- endbuild -->
    <script type="text/javascript">
    // extend localforage with query capabilities
    Query.extend(localforage);
    var people = [
        faker.helpers.contextualCard(),
        faker.helpers.contextualCard(),
        faker.helpers.contextualCard()
    ]
    localforage
        .clear() //clean up
        .then(function afterClear() {
            return localforage.create(people);
        })
        //create
        .then(function afterCreate(createdPeople) {
            console.log('created', createdPeople);
            people = createdPeople;
            return createdPeople;
        })
        //find
        .then(function find() {
            return localforage.find({
                _id: {
                    $in: _.map(people, '_id')
                }
            });
        })
        .then(function afterFind(foundPeople) {
            console.log('found', foundPeople);
            return foundPeople;
        })
        //remove
        .then(function remove() {
            return localforage.findByIdAndRemove(people[0]._id);
        })
        .then(function afterRemove(removedPerson) {
            console.log('removed', removedPerson);
        })
        .catch(function onError(error) {
            console.log(error);
        });
    </script>
</body>

</html>

Testing

  • Clone this repository

  • Install all development dependencies

$ npm install --dev && bower install
  • Then run test
$ npm test

Development

forageQuery has set of useful grunt tasks to help you with development. By running

$ grunt

forageQuery will be able watch your development environment for file changes and apply jshint and karma to the project.

Contribute

Fork this repo and push in your ideas. Do not forget to add a bit of test(s) of what value you adding.

References

Licence

Copyright (c) 2015 lykmapipo & Contributors

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.

Package Sidebar

Install

npm i forage-query

Weekly Downloads

0

Version

0.1.1

License

MIT

Last publish

Collaborators

  • lykmapipo