Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
@typeheim/orm-on-fire
Advanced tools
ORMOnFire is a powerful Firestore ORM.
Install package
# in backend
yarn add firebase firebase-admin firebase-tools
# in frontend
yarn add firebase
yarn add @typeheim/orm-on-fire
# or
npm -i @typeheim/orm-on-fire
Setup ORMOnFire driver:
// sample for Node.JS
FirebaseAdmin.initializeApp({
credential: FirebaseAdmin.credential.cert('my.key.json'),
databaseURL: "https://my-db.firebaseio.com",
})
OrmOnFire.driver = FirebaseAdmin.firestore()
To define entity you need to use @Entity
or @Agregate
decorators for simple and nested collections. Note both
decorators will transform class name to kebab case - lowercase and split words with hyphens, like UserFiles
<
=> user-files
.
Then, each document field must be decorated with @Field
, @MapField
, @CreatedDateField
, @UpdatedDateField
or @DocRef
(for document references) decorators. Sub-collections can be referenced by @CollectionRef
decorator.
import {
Agregate,
Entity,
Collection,
CollectionRef,
ID,
Field,
CreatedDateField,
UpdatedDateField,
MapField
} from '@typeheim/orm-on-fire'
import { CreatedDateField } from './Entity'
@Agregate()
export class User {
@ID() id: string
@Field() firstName: string
@Field() lastName: string
@Field() status: string
@CollectionRef(UserFile) files: Collection<UserFile>
}
@Entity({ collection: 'user-files' })
export class UserFile {
@ID() id: string
@Field() name: string
@MapField() properties: FileProperties
@CreatedDateField() createdAt: Date
@UpdatedDateField() createdAt: Date
}
class FileProperties {
type: "image" | "doc"
}
import { Collection } from '@typeheim/orm-on-fire'
// with promise-like interface
let markus = await Collection.of(User).one('markus').get()
// with Rx interface
Collection.of(User).one('tom').get().subscribe((tom: User) => {
tom.files.forEach((file: UserFile) => {
// some cool stuff
})
})
import { Collection } from '@typeheim/orm-on-fire'
const UsersCollection = Collection.of(User)
// Search using regular Firesotre operators
let activeUsers = await UsersCollection.all().filter(user => user.status.equal('active')).get()
let notActiveUsers = await UsersCollection.all().filter(user => user.status.notEqual('active')).get()
let adultUsers = await UsersCollection.all().filter(user => user.age.greaterThan(18)).get()
To use text index search you first need to add text index hook Firebase function to your Firebase functions list for each colelction you want to be idndexed
import { TextIndex } from '@typeheim/orm-on-fire'
import * as functions from 'firebase-functions'
import * as FirebaseAdmin from 'firebase-admin'
FirebaseAdmin.initializeApp()
export const generateUserIndex = TextIndex(functions, FirebaseAdmin).forCollection('users')
.fields(['name', 'text'])
.buildTrigger()
Official functions deployment guide: Get started: write, test, and deploy your first functions
Once you deploy hooks, you can use index search as below:
// Note: text index search is case-insensitive
let usersStartsWithAlex = await UsersCollection.all().useIndex(user => user.firstName.startsWith('Alex')).get()
let usersEndsWithLex = await UsersCollection.all().useIndex(user => user.firstName.endsWith('lex')).get()
NOTE: for now text index won't work with collection group queries. Support coming in next releases.
Commonly used filer conditions can be organized in named filter scopes for easy code reuse:
class UserScope {
static active() {
return (user: EntityFilter<User>) => {
user.status.equal(1)
}
}
}
// fetch all active users
let activeUsers = await UsersCollection.all().filter(UserScope.active()).get()
For nested collections you don't need to fetch each document separately and can access required collection under specific document ID:
// fetch all PDF files from user suwth id "userId"
let userFiles = await UsersCollection.one('userId').collecction(UserFile).filter(UserFile.pdf()).get()
ORMOnFire support easy declaration of collection groups the same way as for regular collections.
// fetch all file attachments that exist in any collection and sub-collection
let attechments = await Collection.groupOf(Attachment).all().filter(Attachment.file()).get()
FAQs
Firestore ORM
The npm package @typeheim/orm-on-fire receives a total of 9 weekly downloads. As such, @typeheim/orm-on-fire popularity was classified as not popular.
We found that @typeheim/orm-on-fire demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.