Skip to content

Commit 9d912e0

Browse files
committed
Merge branch 'release/v.0.2.0'
2 parents f93f434 + e6776c3 commit 9d912e0

22 files changed

Lines changed: 1972 additions & 78 deletions

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ node_modules
44
*.log
55
.env
66
\.ruby-version
7-
\.node-version
7+
\.node-version
8+
.*-version

README.md

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
Combell API client for node.js. [Combell.be](https://combell.be) is a Belgian hosting provider used by a client of mine. When I noticed the API ( [documented here](https://api.combell.com/v2/documentation) ) while working in the control panel I finally found an interesting, personal, learning project.
66

7-
I hope my effort proofs to be useful for other node.js projects or as a learning resource.
8-
-- Bram Plessers
7+
I hope my effort proofs to be useful for other node.js projects or as a learning resource.
8+
-- Bram Plessers
99

1010
## Example Usage
1111

@@ -16,6 +16,30 @@ I hope my effort proofs to be useful for other node.js projects or as a learning
1616
- copy `.env.example` to `.env` and edit it's contents ( [get your api key here](https://my.combell.com) )
1717
- run the main entry point with `yarn run combell`
1818

19+
```bash
20+
$ yarn run combell
21+
22+
[ { id: 012345, identifier: 'some.domain.tld' },
23+
{ id: 012345, identifier: 'some.domain.tld' },
24+
{ id: 012345, identifier: 'some.domain.tld' },
25+
{ id: 012345, identifier: 'some.domain.tld' },
26+
{ id: 012345, identifier: 'some.domain.tld' },
27+
{ id: 012345, identifier: 'some.domain.tld' },
28+
{ id: 012345, identifier: 'some.domain.tld' },
29+
{ id: 012345, identifier: 'some.domain.tld' },
30+
{ id: 012345, identifier: 'some.domain.tld' },
31+
{ id: 012345, identifier: 'some.domain.tld' },
32+
{ id: 012345, identifier: 'some.domain.tld' },
33+
{ id: 012345, identifier: 'some.domain.tld' },
34+
{ id: 012345, identifier: 'some.domain.tld' },
35+
{ id: 012345, identifier: 'some.domain.tld' },
36+
{ id: 012345, identifier: 'some.domain.tld' },
37+
{ id: 012345, identifier: 'some.domain.tld' } ]
38+
✨ Done in 0.66s.
39+
```
40+
41+
For an example integration for your project check [`examples/node/index.js`](https://github.com/webdevotion/combell-api/blob/778d20a94b061400ca59658dd9956fc2caa1587c/examples/node/index.js).
42+
1943
## Notice
2044
2145
The library only allows calling `/v2/accounts/index` in the current release.

0 commit comments

Comments
 (0)