0.4.0 • Published 7 years ago

clojars-client v0.4.0

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

clojars-client

Build Status dependencies Status

NPM

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.
0.4.0

7 years ago

0.3.0

7 years ago

0.2.0

7 years ago

0.1.0

7 years ago