Giter Site home page Giter Site logo

loql's Introduction

loQL

A light, modular npm package for performant client-side GraphQL caching with Service Workers and IndexedDB.

Installation

Install via npm

npm install loql

Usage

I. Set configuration object:

a. gqlEndpoints (Required): Add GraphQL endpoint URL's to be enabled for caching. (Array of strings)

b. useMetrics (Optional): Enable metrics collection. (Boolean)

c. cacheMethod (Optional): Desired caching strategy. (String)

d. cacheExpirationLimit (Optional): Interval, in milliseconds, at which to refresh cached data. (Integer)

e. doNotCacheGlobal (Optional): Define schema-specific types/fields, whose inclusion in a query will render that query ignored by the caching logic. (Arrays of strings)

f. doNotCacheCustom (Optional): Similar to above, but endpoint-specific. (Object where each key is an endpoint, and the corresponding value is the array of types/fields intended to bypass the cache.

{
  gqlEndpoints: ['http://localhost:<###>/api/graphql', 'https://<abc>.com/graphql'],
  useMetric: false,
  cacheExpirationLimit: 20000,
  cacheMethod: 'cache-network',
  doNotCacheGlobal: [],
  doNotCacheCustom: {
     'http://localhost:<###>/api/graphql': ['password'],
     'https://<abc>.com/graphql': ['account', 'real_time_data'];
  }
}

Features

  • Enables offline use: IndexedDB storage is high-capacity and persists, while keeping reads/writes asynchronous.
  • Minimum-dependency: No server-side component, avoid use of large libraries
  • Cache validation: Keep data fresh with shorter expiration limits, or cache-network strategy
  • Simple: Install package, configure one mandatory setting, and go
  • Flexible: Easily exempt certain types of queries from caching

Usage Notes (NOTE: Work in progress)

  • unsupported operations
  • normalization & deep nesting

Supported Browsers

Desktop: Edge, Firefox, Chrome, Safari, Opera

Mobile: Firefox, Chrome, Android Browser, Samsung Internet

Contributing

Contributions are welcome. Please read CONTRIBUTE.md prior to making a Pull Request.

License

MIT

loql's People

Contributors

harrisoncramer avatar uitie avatar jae-ryu avatar hyandrewlee avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.