jn-dexie
v0.0.2
Published
Tiny [dexie.js](https://dexie.org/) wrapper for angular 7, including `DexieModule`, `DexieConfig` for configuration and `DexieService`.
Downloads
3
Readme
JnDexie
Tiny dexie.js wrapper for angular 7, including DexieModule
, DexieConfig
for configuration and DexieService
.
Usage
// app.module.ts
const DXCONFIG: DexieConfig = {
databaseName: 'database',
schema: {
data: '++id, data',
}
};
@NgModule({
declarations: [
...
],
imports: [
...
DexieModule.forRoot(DXCONFIG),
...
],
providers: [
...
],
bootstrap: [AppComponent]
})
export class AppModule { }