Open mrodal opened 5 years ago
Also I was curious if there is any advantage to using the Capacitor Storage vs the Ionic Storage in an Ionic app.
Having the same question as @kevinclarkadstech regarding the difference between the two
I decided not to use Ionic Storage because there are dependencies on Angular, although no reason there should be.
In the code there is
import { InjectionToken } from '@angular/core';
/** @hidden */
export const StorageConfigToken = new InjectionToken<any>(
'STORAGE_CONFIG_TOKEN'
);
StorageConfigToken is created as an Angular InjectionToken but never used.
With that being said I am just using LocalForage, which is what @ionic/storage uses internally.
I haven't looked at Capacitor Storage in depth to see what it is using.
Some improvements:
Thanks, and great work, Im really liking capacitor 🙂