Static wrapper around a browser's localStorage that falls back to File based storage in the host's temporary directory.
Such storage is generally persistent across pages within a domain; and, if file based, across application executions.
https://gibme-npm.github.io/local-storage/
import LocalStorage from '@gibme/local-storage';
LocalStorage.set('somekey', 'somevalue');
if (LocalStorage.has('somekey')) {
console.log(LocalStorage.get<string>('somekey'));
LocalStorage.remove('somekey');
}