clojars-client
v0.4.0
Published
A simple client for the clojars REST API.
Downloads
14
Readme
clojars-client
A simple client for the clojars REST API.
| | Project Info | | --------------- | ------------- | | License: | MIT | | Build: | npm | | Engines: | Node.js 4.x, 6.x, 7.x |
Installation
npm install clojars-client -S
Usage
const client = require('clojars-client');
client.user('toby')
.then(response => {
console.log(response.body);
})
.catch(console.log);
client.group('org.clojars')
.then(response => {
console.log(response.body);
})
.catch(console.log);
client.artifact('leiningen')
.then(response => {
console.log(response.body);
})
.catch(console.log);
client.groupArtifact('org.clojars', 'xeqi')
.then(response => {
console.log(response.body);
})
.catch(console.log);
client.search('lein')
.then(response => {
console.log(response.body);
})
.catch(console.log);
You can use to
- Get informations about a user.
- Get informations about a group.
- Get informations about a artifact.
- Search by group and artifact.
- Artifact search by name.