# nestjs-fireorm

> Nestjs Fireorm module

Latest version **1.1.1** (published 2024-03-27) · MIT license · 0 weekly downloads

## Install

```sh
npm install nestjs-fireorm
pnpm add nestjs-fireorm
yarn add nestjs-fireorm
bun add nestjs-fireorm
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.1 |
| Published | 2024-03-27 |
| First published | 2021-04-05 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Node | >= 16 |
| Dependencies | 0 |
| Unpacked size | 19.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 17 |
| Author | glebbash |
| Maintainers | glebbash |
| Keywords | nestjs, fireorm, firestore, firebase, typescript |

## Links

- npm: https://www.npmjs.com/package/nestjs-fireorm
- Repository: https://github.com/glebbash/nestjs-fireorm
- Homepage: https://github.com/glebbash/nestjs-fireorm#readme
- Issues: https://github.com/glebbash/nestjs-fireorm/issues
- npm.io page: https://npm.io/package/nestjs-fireorm

## Alternatives

- [@openai/codex-sdk](https://npm.io/package/@openai/codex-sdk.md) — 731.4K weekly downloads
- [babel-plugin-transform-react-jsx](https://npm.io/package/babel-plugin-transform-react-jsx.md) — 565.0K weekly downloads
- [babel-helper-remove-or-void](https://npm.io/package/babel-helper-remove-or-void.md) — 508.5K weekly downloads
- [@pnpm/store-controller-types](https://npm.io/package/@pnpm/store-controller-types.md) — 186.9K weekly downloads
- [react-native-signature-canvas](https://npm.io/package/react-native-signature-canvas.md) — 155.6K weekly downloads

## Recent versions

- 1.1.1 (latest) — 2024-03-27
- 1.1.0 — 2022-08-05
- 1.0.4 — 2022-02-08
- 1.0.3 — 2021-04-11
- 1.0.2 — 2021-04-05
- 1.0.1 — 2021-04-05
- 1.0.0 — 2021-04-05

## README

<p align="center">
  <img
    src="./.github/header.svg"
    width="250"
  />
</p>

<h1 align="center">NestJS Fireorm</h1>

<p align="center">
  <strong>Wrapper for NestJS / Fireorm</strong>
</p>

[![Source](https://img.shields.io/badge/source-github-informational)](https://github.com/glebbash/nestjs-fireorm)
[![Deploy](https://github.com/glebbash/nestjs-fireorm/actions/workflows/build.yml/badge.svg)](https://github.com/glebbash/nestjs-fireorm/actions)
[![Coverage Status](https://coveralls.io/repos/github/glebbash/nestjs-fireorm/badge.svg?branch=master)](https://coveralls.io/github/glebbash/nestjs-fireorm?branch=master)

`nestjs-fireorm` is a tiny [Nest.js][] [Fireorm][] module.

> Fireorm 🔥 is a tiny wrapper on top of firestore that makes life easier when dealing with a
> Firestore database.

This module makes it easier to deal with Firestore database when using Nest.js!

**docs**: https://glebbash.github.io/nestjs-fireorm/

---

Let's get started!

```sh
npm i nestjs-fireorm
```

This module is based on [Fireorm]. The [FireORM documentation][fireorm-docs] is a great resource to
understand how `nestjs-fireorm` works. You'll need to add `nestjs-fireorm` to your root module,
which you can do like this:

```typescript
import { Module } from '@nestjs/common';
import { FireormModule } from 'nestjs-fireorm';

@Module({
  imports: [
    FireormModule.forRoot({
      fireormSettings: { validateModels: true },
    }),
  ],
})
export class AppModule {}
```

_There are other examples, which you can find in our repository [app.module.ts][app-module]._

To improve developer readability, we suggest using the same semantics as defined in [Nest's
documentation on database][nest-db]. Like, when creating a User type, we suggest using the name
`user.entity.ts`:

```typescript
import { Collection } from 'fireorm';

@Collection()
export class UserEntity {
  id!: string;
}
```

Read more about [Fireorm's core concepts][fireorm-core] on how _entities_ should be defined.

Entities has to be imported in your module, and we expose a simple method to do this, which looks like
this:

```typescript
import { Module } from '@nestjs/common';
import { FireormModule } from 'nestjs-fireorm';
import { User } from './entities/user.entity';

@Module({
  imports: [FireormModule.forFeature([User])],
})
export class AppModule {}
```

We'll need to inject the [repository]. `nestjs-fireorm` comes with a special `InjectRepository`
function, which is used like this:

```typescript
import { InjectRepository } from 'nestjs-fireorm';

constructor(
  @InjectRepository(User)
  private users: BaseFirestoreRepository<User>
) {}
```

[fireorm]: https://fireorm.js.org
[fireorm-docs]: https://fireorm.js.org/
[fireorm-core]: https://fireorm.js.org/#/Core_Concepts
[fireorm-repository]: https://fireorm.js.org/#/Core_Concepts?id=fireorm-repositories
[nest.js]: https://nestjs.com
[nest-db]: https://docs.nestjs.com/techniques/database
[app-module]: https://github.com/glebbash/nestjs-fireorm/blob/master/example/src/app.module.ts

## Documentation

Apart from this README, you can find examples of using the library in the following places:

- [Example usage][]

[example usage]: https://github.com/glebbash/nestjs-fireorm/tree/master/example

Bootstrapped with: [create-ts-lib-gh](https://github.com/glebbash/create-ts-lib-gh)

This project is [MIT Licensed](LICENSE).

---
_Source: https://npm.io/package/nestjs-fireorm · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
