Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/nolim1t/urlstatuscheck

Simple code for checking the status (only) of the URL. Pull requests welcome.
https://github.com/nolim1t/urlstatuscheck

Last synced: 2 days ago
JSON representation

Simple code for checking the status (only) of the URL. Pull requests welcome.

Awesome Lists containing this project

README

        

# urlstatuscheck
[![Build Status](https://travis-ci.org/nolim1t/urlstatuscheck.svg)](https://travis-ci.org/nolim1t/urlstatuscheck)

## What

Simple code for checking the status (only) of the URL. Pull requests welcome.

## Installing

```bash
npm install urlstatuscheck
```

## Usage
Only coffeescript works for now :) Sorry.

### Statuscheck

```coffee-script
urlstatuscheck = require("urlstatuscheck").check;
urlstatuscheck {url: ""}, (cb) -> console.log cb
```

### Get Check

```coffee-script
urlstatuscheck = require("urlstatuscheck").getcheck;
urlstatuscheck {url: ""}, (cb) -> console.log cb
```