npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

capacitor-lwy-storage

v0.0.3

Published

The Storage API provides a simple key/value persistent store for lightweight data.

Downloads

9

Readme

@capacitor/storage

The Storage API provides a simple key/value persistent store for lightweight data.

Mobile OSs may periodically clear data set in window.localStorage, so this API should be used instead. This API will fall back to using localStorage when running as a Progressive Web App.

This plugin will use UserDefaults on iOS and SharedPreferences on Android. Stored data is cleared if the app is uninstalled.

Note: This API is not meant to be used as a local database. If your app stores a lot of data, has high read/write load, or requires complex querying, we recommend taking a look at a SQLite-based solution. One such solution is Ionic Secure Storage, a SQLite-based engine with full encryption support. The Capacitor Community has also built a number of other storage engines.

Install

npm install @capacitor/storage
npx cap sync

Example

import { Storage } from '@capacitor/storage';

const setName = async () => {
  await Storage.set({
    key: 'name',
    value: 'Max',
  });
};

const checkName = async () => {
  const { value } = await Storage.get({ key: 'name' });

  console.log(`Hello ${value}!`);
};

const removeName = async () => {
  await Storage.remove({ key: 'name' });
};

Working with JSON

The Storage API only supports string values. You can, however, use JSON if you JSON.stringify the object before calling set(), then JSON.parse the value returned from get().

This method can also be used to store non-string values, such as numbers and booleans.

API

configure(...)

configure(options: ConfigureOptions) => Promise<void>

Configure the storage plugin at runtime.

Options that are undefined will not be used.

| Param | Type | | ------------- | ------------------------------------------------------------- | | options | ConfigureOptions |

Since: 1.0.0


get(...)

get(options: GetOptions) => Promise<GetResult>

Get the value from storage of a given key.

| Param | Type | | ------------- | ------------------------------------------------- | | options | GetOptions |

Returns: Promise<GetResult>

Since: 1.0.0


set(...)

set(options: SetOptions) => Promise<void>

Set the value in storage for a given key.

| Param | Type | | ------------- | ------------------------------------------------- | | options | SetOptions |

Since: 1.0.0


remove(...)

remove(options: RemoveOptions) => Promise<void>

Remove the value from storage for a given key, if any.

| Param | Type | | ------------- | ------------------------------------------------------- | | options | RemoveOptions |

Since: 1.0.0


clear()

clear() => Promise<void>

Clear keys and values from storage.

Since: 1.0.0


keys()

keys() => Promise<KeysResult>

Return the list of known keys in storage.

Returns: Promise<KeysResult>

Since: 1.0.0


migrate()

migrate() => Promise<MigrateResult>

Migrate data from the Capacitor 2 Storage plugin.

This action is non-destructive. It will not remove old data and will only write new data if they key was not already set. To remove the old data after being migrated, call removeOld().

Returns: Promise<MigrateResult>

Since: 1.0.0


removeOld()

removeOld() => Promise<void>

Removes old data with _cap_ prefix from the Capacitor 2 Storage plugin.

Since: 1.1.0


Interfaces

ConfigureOptions

| Prop | Type | Description | Default | Since | | ----------- | ------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------- | ----- | | group | string | Set the storage group. Storage groups are used to organize key/value pairs. Using the value 'NativeStorage' provides backwards-compatibility with cordova-plugin-nativestorage. WARNING: The clear() method can delete unintended values when using the 'NativeStorage' group. | CapacitorStorage | 1.0.0 |

GetResult

| Prop | Type | Description | Since | | ----------- | --------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----- | | value | string | null | The value from storage associated with the given key. If a value was not previously set or was removed, value will be null. | 1.0.0 |

GetOptions

| Prop | Type | Description | Since | | --------- | ------------------- | --------------------------------------------- | ----- | | key | string | The key whose value to retrieve from storage. | 1.0.0 |

SetOptions

| Prop | Type | Description | Since | | ----------- | ------------------- | --------------------------------------------------------- | ----- | | key | string | The key to associate with the value being set in storage. | 1.0.0 | | value | string | The value to set in storage with the associated key. | 1.0.0 |

RemoveOptions

| Prop | Type | Description | Since | | --------- | ------------------- | ------------------------------------------- | ----- | | key | string | The key whose value to remove from storage. | 1.0.0 |

KeysResult

| Prop | Type | Description | Since | | ---------- | --------------------- | -------------------------- | ----- | | keys | string[] | The known keys in storage. | 1.0.0 |

MigrateResult

| Prop | Type | Description | Since | | -------------- | --------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----- | | migrated | string[] | An array of keys that were migrated. | 1.0.0 | | existing | string[] | An array of keys that were already migrated or otherwise exist in storage that had a value in the Capacitor 2 Storage plugin. | 1.0.0 |