├── .babelrc ├── .eslintrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── package.json ├── src ├── inStorageCache.js ├── index.js ├── keepCacheInSyncWithLocalStorage.js ├── objectStorageCache.js ├── persistLink.js ├── transform.js └── utils.js ├── tests ├── inStorageCache.test.js ├── objectStorageCache.test.js ├── persistLink.test.js ├── test-utils.js └── transform.test.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/apollo-cache-instorage/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/apollo-cache-instorage/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | lib 3 | coverage 4 | .idea 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/apollo-cache-instorage/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/apollo-cache-instorage/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/apollo-cache-instorage/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/apollo-cache-instorage/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/apollo-cache-instorage/HEAD/package.json -------------------------------------------------------------------------------- /src/inStorageCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/apollo-cache-instorage/HEAD/src/inStorageCache.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/apollo-cache-instorage/HEAD/src/index.js -------------------------------------------------------------------------------- /src/keepCacheInSyncWithLocalStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/apollo-cache-instorage/HEAD/src/keepCacheInSyncWithLocalStorage.js -------------------------------------------------------------------------------- /src/objectStorageCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/apollo-cache-instorage/HEAD/src/objectStorageCache.js -------------------------------------------------------------------------------- /src/persistLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/apollo-cache-instorage/HEAD/src/persistLink.js -------------------------------------------------------------------------------- /src/transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/apollo-cache-instorage/HEAD/src/transform.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/apollo-cache-instorage/HEAD/src/utils.js -------------------------------------------------------------------------------- /tests/inStorageCache.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/apollo-cache-instorage/HEAD/tests/inStorageCache.test.js -------------------------------------------------------------------------------- /tests/objectStorageCache.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/apollo-cache-instorage/HEAD/tests/objectStorageCache.test.js -------------------------------------------------------------------------------- /tests/persistLink.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/apollo-cache-instorage/HEAD/tests/persistLink.test.js -------------------------------------------------------------------------------- /tests/test-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/apollo-cache-instorage/HEAD/tests/test-utils.js -------------------------------------------------------------------------------- /tests/transform.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/apollo-cache-instorage/HEAD/tests/transform.test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/apollo-cache-instorage/HEAD/yarn.lock --------------------------------------------------------------------------------