Gathering detailed insights and metrics for readyator
Gathering detailed insights and metrics for readyator
Gathering detailed insights and metrics for readyator
Gathering detailed insights and metrics for readyator
npm install readyator
Typescript
Module System
Min. Node Version
Node Version
NPM Version
TypeScript (94.72%)
JavaScript (5.28%)
Total Downloads
149,924
Last Day
6
Last Week
97
Last Month
456
Last Year
12,030
1 Stars
165 Commits
2 Forks
2 Watchers
5 Branches
3 Contributors
Updated on Apr 01, 2025
Minified
Minified + Gzipped
Latest Version
2.0.0
Package Id
readyator@2.0.0
Unpacked Size
17.47 kB
Size
6.01 kB
File Count
26
NPM Version
10.2.3
Node Version
20.10.0
Published on
Dec 18, 2023
Cumulative downloads
Total Downloads
Last Day
200%
6
Compared to previous day
Last Week
110.9%
97
Compared to previous week
Last Month
44.3%
456
Compared to previous month
Last Year
-85.5%
12,030
Compared to previous year
2
19
Waits for specified urls
or ports
on localhost to be ready before running a supplied command.
1npm install readyator
1yarn add readyator
ports
or urls
) must be separated by comma if you want to check for multiple services to be ready ( returning a successful HTTP status code).command
must be surrounded by quotes so that it can be properly parsed.Command:
1readyator [ports] [command]
Example:
1readyator 8080,8081 "npm run start"
If you're not looking to perform any specific actions but simply want to determine when the service is available, use this command:
1readyator 8080,8081 "exit 0"
Command:
1readyator [urls] [command]
Example:
1readyator https://www.google.com/,http://localhost:8081/ "npm run start"
Command:
1readyator [urls] [command] [interval_in_millis]
Example:
1readyator https://www.google.com/ "npm run start" 5000
Command:
1readyator-docker [container_name] [interval_in_millis]
Example:
1readyator-docker my_docker_container 1000
You can use readyator
also through its Node.js API:
1import readyator from 'readyator'; 2 3await readyator([8080, 8081], 'npm run start');
It also supports executing a callback function:
1import readyator from 'readyator'; 2 3const callback = () => { 4 console.log('System is online!'); 5}; 6 7readyator([8080, 8081], callback);
Readyator's programmatic interface can also be used to listen for Docker containers to become healthy:
1import {runWhenHealthy} from 'readyator'; 2 3await runWhenHealthy('my_docker_container');
Here is how you can easily test the readyator
from your development environment when checking out the code:
1npm start https://www.google.com/ "npm run exit"
No vulnerabilities found.
No security vulnerabilities found.