Skip to content

Latest commit

 

History

History
38 lines (27 loc) · 1.05 KB

README.md

File metadata and controls

38 lines (27 loc) · 1.05 KB

Vow Asker NPM version

Dependency status devDependency status

Module wraps asker API in the Vow promises implementation.

Install

npm install vow-asker

Usage

var ask = require('vow-asker');

ask({ host : 'ya.ru' })
    .then(function(response) {

    })
    .fail(function(error) {
        error.log();
    });

More docs

See asker for documentation about asker options and Vow for promises docs.