Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yeliex/dnspod.js
js sdk for dnspod
https://github.com/yeliex/dnspod.js
Last synced: about 2 months ago
JSON representation
js sdk for dnspod
- Host: GitHub
- URL: https://github.com/yeliex/dnspod.js
- Owner: yeliex
- License: mit
- Created: 2018-05-25T05:59:28.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-05-09T16:05:46.000Z (over 3 years ago)
- Last Synced: 2024-11-13T21:52:13.700Z (about 2 months ago)
- Language: TypeScript
- Size: 39.1 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dnspod.js
js sdk for dnspod## Installation
```bash
npm install dnspod.js -SOR
yarn add dnspod.js
```## Usage
```javascript
// js
const DNSPod = require('dnspod.js');//ts
import DNSPod from 'dnspod.js';const dnspod = new DNSPod({
access_token: 'access_token',
access_token_id: 'access_token_id'
})const main =async ()=>{
console.log(await dnspod.Info.Version();)
}main();
```