0.1.2 • Published 6 years ago

deltaflate-encode v0.1.2

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

deltaflate

Delta compression over HTTP with extended support for GraphQL (WIP)

Apollo client

import { createFetch } from 'deltaflate-decode-graphql';
import jsondiffpatchImDecoder from 'deltaflate-decode/jsondiffpatchImDecoder';
import hash from 'object-hash';

import { HttpLink } from 'apollo-link-http';
import { InMemoryCache } from 'apollo-cache-inmemory';

const cache = new InMemoryCache();

const detlaflateFetch = createFetch(cache, [jsondiffpatchImDecoder], hash, window.fetch);

const link = new HttpLink({ uri: 'http://api.githunt.com/graphql', fetch: detlaflateFetch });

const client = new ApolloClient({
  link,
  cache
});

Express GraphQL server

const { deltaflateExpress } = require('deltaflate-express');
const { GraphQLEncoderDictionaryStore } = require('deltaflate-decode-graphql');

const express = require('express');
const { graphqlExpress } = require('apollo-server-express');
const express = require('express');
const { InMemoryCache } = require('apollo-cache-inmemory');

const app = express();

const dictionaryStore = new GraphQLEncoderDictionaryStore(() => new InMemoryCache());

app.use('/graphql', deltaflateExpress(dictionaryStore), graphqlExpress({ schema }));