🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

async-source

Package Overview
Dependencies
Maintainers
3
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

async-source

async requests wrapper

2.0.1
latest
Source
npm
Version published
Weekly downloads
247
-24.46%
Maintainers
3
Weekly downloads
 
Created
Source

AsyncSource

AsyncSource is a stateful, reactive data source designed for managing asynchronous requests in modern JavaScript and TypeScript projects. It provides robust features for error handling, throttling, and caching, making it ideal for applications that require efficient data management.

Features

Stateful Management: Track the state of your requests, including (isLoading, isFetched, data).

Error Handling: Automatically manage errors with customizable handlers, ensuring a smooth user experience.

Debounce Control: Integrate built-in debouncing to manage rapid requests, preventing redundant calls and ensuring only the latest call is processed.

Cache Support: Cache responses locally with configurable storage options and expiration times, enhancing performance and reducing unnecessary network requests.

Automatic State Consistency: In cases of multiple calls, only the last call will be processed, maintaining data integrity and consistency.

Use Cases

  • Connect AsyncSource to dynamic selects to efficiently handle user interactions and data fetching.
  • Implement throttling and debouncing in applications that require real-time data updates without overwhelming the server.

Install

npm install --save async-source

Usage

// javascript
import AsyncSource from 'async-source';

const source = new AsyncSource(request);

async function loadItems() {
    await source.update(...requestParams);
    const response = source.data;
}
// typescript
import AsyncSource from 'async-source';

const source = new AsyncSource<RespnonsType>(request);

async function loadItems() {
    await source.update(...requestParams);
    const response = source.data;
}

Parameters

ParameterIs requiredDescription
serviceMethodtrueMethod that returns promise
errorHandlerfalseFunction that will be called in case of service method rejected
delayfalsedelay in ms

Properties(reactive getters)

PropertyDescriptionType
dataReturns your method responseYour method response
isLoadingReturns true when request pendingBoolean
isFetchReturns true after first loadBoolean

Methods

MethodDescriptionParams
updateCalls be requestYour method request params
pushCalls be request and handles success responseSuccess handler, Your method request params
updateIfEmptyCalls be request in source if data is emptyYour method request params
updateOnceCalls be request in source if data is empty and waits till other request resolvedYour method request params
updateImmediateCalls be request in source ignoring debounceYour method request params
clearSet source data to initial state(null)---

Usage with vue3(composition api)

<template>
    <ul v-loading="isLoading">
        <li v-for="item in items" :key="item.id">
            {{ item.name }}
        </li>
    </ul>
</template>

<script>
import AsyncSource from 'async-source';
import { computed, reactive } from 'vue';

export default {
    name: 'MyComponent',
    setup() {
        function errorHandler(error) {
            console.error(error);
        }

        const source = reactive(new AsyncSource(request, errorHandler, 300));

        source.update();

        const items = computed(() => source.data || []);
        const isLoading = computed(() => source.isLoading);
        
        return {
            items,
            isLoading
        };
    }
}

</script>

Usage with vue2(option api)

<template>
    <ul v-loading="isLoading">
        <li v-for="item in items" :key="item.id">
            {{ item.name }}
        </li>
    </ul>
</template>

<script>
import AsyncSource from 'async-source';

export default {
    name: 'MyComponent',
    data() {
        return {
            source: new AsyncSource(request, this.errorHandler, 300)
        }
    },
    computed: {
        items() {
            return this.source.data || [];
        },
        isLoading() {
            return this.source.isLoading;
        }
    },
    created() {
        this.source.update();
    },
    methods: {
        errorHandler(error) {
            console.error(error);
        }
    }
}

</script>

Cache

Global cache configuration

To apply global settings, use setConfig:
import AsyncSource from 'async-source';

AsyncSource.setConfig({
    cacheStorage: localStorage,               // or any custom sync/async storage
    cacheTime: 12 * 60 * 60 * 1000,           // cache for 12 hours
    cachePrefix: 'MyAppAsyncSource'            // optional prefix for cache keys
});

Instance-Level Configuration

Specify custom settings for each AsyncSource instance by passing an options object as the third parameter. This object can include both caching and debounce settings.
new AsyncSource<T>(
    serviceMethod: (...args: any[]) => Promise<T>,
    errorHandler?: (error: any) => void,
    configOrDelay?: number | ConfigOptions
)
ParameterRequiredDescription
serviceMethodYesMethod that returns a promise.
errorHandlerNoFunction to handle errors in the service method.
configOrDelayNoDebounce delay (in ms) or an object with config options.

ConfigOptions Interface

If using a configuration object for configOrDelay, it can include:
interface ConfigOptions {
    debounceTime?: number;        // Delay before request execution (in milliseconds)
    requestCacheKey?: string | (() => string);     // Request cache key (required for enable cache)
    cacheTime?: number;           // Cache expiration in milliseconds
    cacheStorage?: CacheStorage;  // Storage (e.g., localStorage, sessionStorage, indexDB)
    isUpdateCache?: boolean;      // Refetch cache every time when true.
}
OptionTypeDefaultDescription
debounceTimenumber300Delay before request execution (in milliseconds).
requestCacheKeystring | (() => string)Request cache key (required for enabling cache).
cacheTimenumber43200000Cache expiration time in milliseconds (default: 12 hours).
cacheStorageCacheStoragelocalStorageStorage interface (e.g., localStorage, sessionStorage, indexedDB).
isUpdateCachebooleantrueRefetch cache every time when true.

AsyncSource.invalidateCacheKey

Invalidates (removes) the cache entry associated with the provided cache key.

This method removes the cached data from the storage based on the provided cacheKey and the cachePrefix. The key used to identify the cached data is a combination of cachePrefix and the provided cacheKey. If the cache item exists in the storage, it will be removed. If an error occurs during the removal, it will be caught and logged, and the method will return null.

Parameters

  • cacheKey (string): The key used to identify the cached data to be invalidated. This value is combined with the cachePrefix to form the full cache key.
  • storage (CacheStorage, optional): The storage where the cache is stored. If not provided, the default storage (AsyncSource.defaultStorage) will be used.

Returns

  • Promise<void | null>: A promise that resolves to void if the cache entry was successfully invalidated, or null if an error occurred during the removal.

Example

// Example usage:
await AsyncSource.invalidateCacheKey("myCacheKey");

// You can also provide a custom storage:
await AsyncSource.invalidateCacheKey("myCacheKey", customStorage);

Example

Sync storage

<template>
    <ul v-loading="isLoading">
        <li v-for="item in items" :key="item.id">
            {{ item.name }}
        </li>
    </ul>
</template>

<script>
import AsyncSource from 'async-source';
import { computed, reactive } from 'vue';

export default {
    name: 'MyComponent',
    setup() {
        function errorHandler(error) {
            console.error(error);
        }

        const source = reactive(
            new AsyncSource(request, errorHandler, {
                requestCacheKey: 'key',
                cacheStorage: sessionStorage,
                isUpdateCache: false,
                debounceTime: 100,
                cacheTime: 24 * 60 * 60 * 1000 // 24h
            })
        );
        source.update();

        const items = computed(() => source.data || []);
        const isLoading = computed(() => source.isLoading);
        
        return {
            items,
            isLoading
        };
    }
}

</script>

Async storage

<template>
    <ul v-loading="isLoading">
        <li v-for="item in items" :key="item.id">
            {{ item.name }}
        </li>
    </ul>
</template>

<script>
import AsyncSource from 'async-source';
import { computed, reactive } from 'vue';
import { get, set, del } from 'idb-keyval';

export default {
    name: 'MyComponent',
    setup() {
        function errorHandler(error) {
            console.error(error);
        }

        const storage = {
            getItem: (key: string) => get(key),
            setItem: (key: string, value: string) => set(key, value),
            removeItem: (key: string) => del(key)
        };

        const source = reactive(
            new AsyncSource(request, errorHandler, {
                requestCacheKey: 'key',
                cacheStorage: storage,
                isUpdateCache: false,
                debounceTime: 100,
                cacheTime: 24 * 60 * 60 * 1000 // 24h
            })
        );
        source.update();

        const items = computed(() => source.data || []);
        const isLoading = computed(() => source.isLoading);
        
        return {
            items,
            isLoading
        };
    }
}

</script>

Keywords

async

FAQs

Package last updated on 11 Apr 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts