Giter VIP home page Giter VIP logo

firestore-offline's Introduction

Firestore Offline

firestore-offline is a 100% in-memory emulation of Firestore.

You can use it in browsers to switch the data storage online / offline without changing any part of your app codebase. Firestore itself has a offline-persistence feature, but not the handy 100% offline emulation like this.

Installation

yarn add firestore-offline

Initialization

import fo from "firestore-offline"

const DATA = {
  users : {
    user_A : {
	  name : "warashibe"
	},
	user_B : {
	  name : "hideaki"
	},
  }
}

fo.initializeApp({
  onChange: async data => await {
    // this will be executed every time the data changes
	// for instance, you can sync the data with LocalStorage here
  },
  data: DATA // initial data
})
  

The rest is the same as Firestore.

Test

yarn test

Cookbook

Using firestore-offline with Firestore Sweet syntactic sugar with the data backed up and synced by LocalForage.

import fo from "firestore-offline"
import sweet from "firestore-sweet"
import lf from "localforage"

fo.initializeApp({
  onChange: async data => await lf.setItem("data", data.data),
  data: (await lf.getItem("data")) || {}
})
const fs = sweet(fo.firestore)

(async ()=>{
  const user_id = await fs.add({name: "warashibe"}, "users")
  console.log(await fs.get("users", user_id))
})()

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.