0.0.2 • Published 6 years ago
jn-dexie v0.0.2
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 { }