Skip to content

ohsc/dnspod-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dnspod-client

Dnspod-client is a client of DNSPod. It was originally designed for use with node.js.

Quick Examples

var Dnspod = require('dnspod-client'),
    client = new Dnspod({
        'login_email': '[email protected]',
        'login_password': 'test'
    });

client
    .domainList({length: 5})
    .on('domainList', function (err, data) {
        if (err) {
            throw err;
        } else {
            done();
        }
    });

client
    .getHostIp()
    .on('getHostIp', function (err, message) {
        if (err) {
            throw err;
        } else {
            console.log('get IP address: ' + message);
            done();
        }
    });

Download

You can install using Node Package Manager (npm):

npm install dnspod-client

License

Copyright (c) 2012 Chao Shen. This software is licensed under the BSD License.

About

A client of DNSPod

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published