Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/edcarroll/hydrate-mongodb-shortid
ShortID Generator for hydrate-mongodb
https://github.com/edcarroll/hydrate-mongodb-shortid
Last synced: 3 days ago
JSON representation
ShortID Generator for hydrate-mongodb
- Host: GitHub
- URL: https://github.com/edcarroll/hydrate-mongodb-shortid
- Owner: edcarroll
- Created: 2016-12-23T23:41:07.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2016-12-24T00:00:52.000Z (almost 8 years ago)
- Last Synced: 2024-09-22T22:18:47.184Z (about 2 months ago)
- Language: TypeScript
- Size: 1.95 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# hydrate-mongodb-shortid
ShortID Generator for hydrate-mongodb## Install
```bash
npm install --save @edcarroll/hydrate-mongodb-shortid
```## Example
```ts
import {Configuration} from "@edcarroll/hydrate-mongodb";
import {ShortIDGenerator} from "@edcarroll/hydrate-mongodb-shortid"let dbConfig = new Configuration();
dbConfig.identityGenerator = new ShortIDGenerator();
```