Storage
Installation
npm install @ngxs/storage-plugin --save
# or if you are using yarn
yarn add @ngxs/storage-pluginUsage
import { NgxsModule } from '@ngxs/store';
import { NgxsStoragePluginModule } from '@ngxs/storage-plugin';
@NgModule({
imports: [
NgxsModule.forRoot([]),
NgxsStoragePluginModule.forRoot()
]
})
export class AppModule {}Options
Custom Storage Engine
Migrations
Last updated

