Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/nolim1t/urlstatuscheck
- Owner: nolim1t
- Created: 2014-02-06T22:51:46.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-08-28T01:02:17.000Z (about 10 years ago)
- Last Synced: 2024-10-12T22:43:29.021Z (about 1 month ago)
- Language: CoffeeScript
- Size: 195 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```