typesafe-node-firestore
A library of typescript interfaces that extend existing firestore classes, adding type safety and a better autocomplete experience.
This library is for use with @google-cloud/firestore
, while the library its based on is intended for the browser-based Javascript
Firestore library.
Based on typesafe-firestore.
Installation
npm install typesafe-node-firestore --save-dev
Usage
You most likely want to import TypedCollectionReference
and create your collections as shown below.
import * as firestore from "@google-cloud/firestore";
import { TypedCollectionReference } from "typesafe-node-firestore";
interface Author {
penName: string;
shortBiography: string;
posts: string[];
}
const firestore = new Firestore();
const AuthorCollection = firestore.collection(
"authors"
) as TypedCollectionReference<Author>;
And then you can use your typesafe collection the same ways you would use the regular firestore library.
AuthorCollection.add({
penName: "",
shortBiography: "",
posts: []
});
AuthorCollection.add({
penName: 11,
shortBiography: "",
posts: []
});
AuthorCollection.where("penName", "<=", "Barfunk");
AuthorCollection.where("realName", "<=", "Barfunk");
License
typesafe-node-firestore is MIT licensed.