An open API service indexing awesome lists of open source software.

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

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