Wait for a given URL to continue.
npm install await-url> Wait for a given URL to continue.
- Alias a deployment when it is ready.
- Run a health check on your service.
- Know when it is safe to share.
``sh`
npm install await-url --global
`sh
$ await-url --help
Usage
$ await-url
Option
--tries Maximum number of polling attempts
--interval Milliseconds to wait between tries
Example
$ await-url example.com/status
$ await-url example.com --tries=3 --interval=1000
`
Waiting until a URL returns 200 OK is especially useful to avoid sending traffic to it before it is ready.
Please consider whether a more efficient, event-based model is available to you before using this.
Type: number1200
Default:
Maximum number of polling attempts to make before timing out.
Type: number1200
Default:
Number of milliseconds to wait between polling attempts.
See our contributing guidelines for more details.
1. Fork it.
2. Make a feature branch: git checkout -b my-new-featuregit commit -am 'Add some feature'
3. Commit your changes: git push origin my-new-feature`
4. Push to the branch:
5. Submit a pull request.
Go make something, dang it.