@hikyu/async

1.0.9ย โ€ขย Publicย โ€ขย Published

Async

Useful package ๐Ÿ“‚ for some async stuff like sleep ๐Ÿ’ค

๐Ÿ“‚ Zipped under 1kb with updates.

Install

npm i @hikyu/async

Usage

I will use the deconstructed ๐Ÿšง require for demonstration

// Simple require
const async = require('@hikyu/async');
sleep.sleep();

// Deconstructed require with custom names
const { sleep: wait } = require('@hikyu/async');
wait();

// Deconstructed require
const { sleep, .. } = require('@hikyu/async');
sleep();

Functions

General

Sleep

console.log("Sleep for 3 seconds ๐Ÿ˜ด");

// Wait for 2 seconds
await sleep();

// Wait for 1 second
await sleep(1000)

console.log("I'm done sleeping ๐Ÿ‘‹");

Requests

Get

// Only Https at the moment.
await get('api.example.com/todo/1'); // > json output

Post

// Only Https at the moment.
await post('api.example.com/todo/create'); // > json output

onChange

// console.logs every change happened on the request
onChange('api.example.com/activity/new', 'GET', console.log, 5000);

// Interval time defaults to 10000
// onChange('api.example.com/activity/new', 'POST', yourFunction);

Readme

Keywords

none

Package Sidebar

Install

npm i @hikyu/async

Weekly Downloads

0

Version

1.0.9

License

ISC

Unpacked Size

5.13 kB

Total Files

4

Last publish

Collaborators

  • hikyu