0.1.20 • Published 9 years ago

keyper v0.1.20

Weekly downloads
4
License
MIT
Repository
github
Last release
9 years ago

Keyper Build Status

Persistence layer/in-memory data store. Inspired by js-data. Written in TypeScript.

Key features

  • Immutable objects in the store
  • Unique and non-unique indexes
  • Strong emphasis on relations. Supports m2m relations and backrefs via getter properties. Supports automatic loading of requested relations once objects were fetched
  • Built-in MongoDB-flavored query syntax
  • Live collection views, paginated and "Load More" views

Installation

npm install --save keyper

Quick start

Set up Data Source:

// dataSource.ts
import {AbstractRestApiDataSource} from 'keyper/src/dataSource/restApi';
import {stringify} from 'querystring';

export class RestApiDataSource extends AbstractRestApiDataSource {
  protected makeRequest(methodName:string, url:string,
                        params:any, payload:any) {
    let request;
    switch (methodName) {
      case 'create':
      case 'update':
        request = fetch(url, {
          method: methodName === 'create' ? 'post' : 'put', 
          body: JSON.stringify(payload)
        });
        break;
      case 'delete'
        request = fetch(url, {method: 'delete'});
        break;
      case 'find':
      case 'findOne':
        request = fetch(`${url}?${serialize(params)}`);
        break;
    }
    return request.then(response => response.json());
  }
  
  protected createFindAllParams(pks:KeyType[]):IFilterParams {
    // request params needed to fetch items by list of pks
    return {where: {
      [this.collection.config.primaryKey]: {$in: pks}
    }};
  }
}

Set up Collections:

import {DB, Collection} from 'keyper';
import {RestApiDataSource} from './dataSource';

const db = new DB(Collection);
db.collectionDefaults.sourceClass = RestApiDataSource;

export const Users = db.createCollection('Users', {
  endpoint: 'users'
});

export const Posts = db.createCollection('Posts', {
  endpoint: 'posts',
  relations: {
    // this will create relation using `author_id` as
    // a foreign key:
    author: 'Users'
    
    // above form is a shortcut for the following:
    //  author: {
    //    collection: 'Users',
    //    foreignKey: 'author_id'
    //  }
  }
});

Query Collections:

// this will fetch all Posts and then all Users that are
// related to them as authors
Posts.fetch({}, {
  loadRelations: {
    author: true
  }
}).then((posts) => {
  // get Post author via relation property
  let author = posts[0].author;
});
0.1.20

9 years ago

0.1.19

10 years ago

0.1.18

10 years ago

0.1.17

10 years ago

0.1.16

10 years ago

0.1.15

10 years ago

0.1.14

10 years ago

0.1.13

10 years ago

0.1.12

10 years ago

0.1.11

10 years ago

0.1.10

10 years ago

0.1.9

10 years ago

0.1.8

10 years ago

0.1.7

10 years ago

0.1.6

10 years ago

0.1.5

10 years ago

0.1.4

10 years ago