https://github.com/coderaiser/taus
fast check host http status
https://github.com/coderaiser/taus
Last synced: 7 months ago
JSON representation
fast check host http status
- Host: GitHub
- URL: https://github.com/coderaiser/taus
- Owner: coderaiser
- License: mit
- Created: 2014-11-14T16:23:40.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-11-14T16:55:47.000Z (over 11 years ago)
- Last Synced: 2025-09-14T10:42:34.513Z (8 months ago)
- Language: JavaScript
- Size: 117 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- Changelog: ChangeLog
- License: LICENSE
Awesome Lists containing this project
README
# Taus
Fast check host http status.
## Install
```
npm i taus --save
```
## How to use?
```js
var taus = require('taus');
taus('http://cloudcmd.io', function(error, status) {
if (error)
console.error(error.message);
else
console.log(status);
/* 200 */
});
```
## License
MIT