0.0.2 • Published 5 years ago

jn-dexie v0.0.2

Weekly downloads
7
License
-
Repository
-
Last release
5 years ago

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 { }
0.0.2

5 years ago

0.0.1

5 years ago