https://github.com/createnextapp/async-local-storage
AsyncLocalStorage is an unencrypted, asynchronous, persistent, key-value storage system that is global to the app in web browser. It should be used instead of LocalStorage.
https://github.com/createnextapp/async-local-storage
angular app async async-await asynchronous asyncstorage javascript local-async-storage local-storage localasyncstorage localstorage react storage vue web
Last synced: 23 days ago
JSON representation
AsyncLocalStorage is an unencrypted, asynchronous, persistent, key-value storage system that is global to the app in web browser. It should be used instead of LocalStorage.
- Host: GitHub
- URL: https://github.com/createnextapp/async-local-storage
- Owner: createnextapp
- License: mit
- Created: 2020-04-17T04:47:34.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-30T12:14:24.000Z (almost 5 years ago)
- Last Synced: 2025-04-20T13:39:52.968Z (27 days ago)
- Topics: angular, app, async, async-await, asynchronous, asyncstorage, javascript, local-async-storage, local-storage, localasyncstorage, localstorage, react, storage, vue, web
- Language: JavaScript
- Homepage:
- Size: 815 KB
- Stars: 27
- Watchers: 1
- Forks: 6
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# async-local-storage
AsyncLocalStorage is an unencrypted, asynchronous, persistent, key-value storage system that is global to the app in web browser. It should be used instead of LocalStorage.
[](https://www.npmjs.com/package/@createnextapp/async-local-storage) 
## ❓ Why AsyncLocalStorage instead of LocalStorage?
**Cons of LocalStorage**
LocalStorage is synchronous, each local storage operation you run will be one-at-a-time. For complex applications this is a big no-no as it'll slow down your app's runtime.
**Pros of AsyncLocalStorage**
AsyncLocalStorage is asynchronous, each local async storage operation you run will be multi-at-a-time. It'll speed up your app's runtime.
The AsyncLocalStorage JavaScript code is a facade that provides [a clear JavaScript API](./API.md), real Error objects, and non-multi functions. Each method in the API returns a Promise object.
## 🔧 Install
async-local-storage is available on npm. It can be installed with the following command:
```
npm install --save @createnextapp/async-local-storage
```async-local-storage is available on yarn as well. It can be installed with the following command:
```
yarn add @createnextapp/async-local-storage
```## 💡 Usage
To learn more how to use async-local-storage:
* [API Documentation](./API.md)
### Import
```js
import AsyncLocalStorage from '@createnextapp/async-local-storage'
```### Store data
```js
storeData = async () => {
try {
await AsyncLocalStorage.setItem('@key', 'value')
} catch(e) {
// error
}
}
```### Read data
```js
readData = async () => {
let datatry {
data = await AsyncLocalStorage.getItem('@key')
} catch(e) {
// error
}console.log(data)
/*
output:
value
*/
}
```## 💖 Wrap Up
If you think any of the `async-local-storage` can be improved, please do open a PR with any updates and submit any issues. Also, I will continue to improve this, so you might want to watch/star this repository to revisit.
## 🌟 Contribution
We'd love to have your helping hand on contributions to `async-local-storage` by forking and sending a pull request!
Your contributions are heartily ♡ welcome, recognized and appreciated. (✿◠‿◠)
How to contribute:
- Open pull request with improvements
- Discuss ideas in issues
- Spread the word
- Reach out with any feedback## ⚖️ License
The MIT License [](https://opensource.org/licenses/MIT)