An open API service indexing awesome lists of open source software.

https://github.com/panther-js/mavencc

A simple maven central client.
https://github.com/panther-js/mavencc

client maven

Last synced: over 1 year ago
JSON representation

A simple maven central client.

Awesome Lists containing this project

README

          

# mavencc

[![Build Status](https://travis-ci.org/panther-js/mavencc.svg?branch=master)](https://travis-ci.org/panther-js/mavencc)
[![dependencies Status](https://david-dm.org/panther-js/mavencc/status.svg)](https://david-dm.org/panther-js/mavencc)

[![NPM](https://nodei.co/npm/mavencc.png)](https://npmjs.org/package/mavencc)

A simple maven central client.

| | Project Info |
| --------------- | ------------- |
| License: | MIT |
| Build: | npm |
| Engines: | Node.js 4.x, 6.x, 8.x |

## Installation

```bash
npm install mavencc -S
```

## Usage

```javascript
const mavencc = require('mavencc');

mavencc.basicArtifactSearch('wildfly-swarm', 5)
.then(console.log)
.catch(error => console.log(error));

mavencc.artifactSearch('wildfly-swarm', 5)
.then(console.log)
.catch(error => console.log(error));

mavencc.listVersions('org.wildfly.swarm', 'wildfly-swarm', 5)
.then(console.log)
.catch(error => console.log(error));

mavencc.artifactByClassname('junit', 5)
.then(console.log)
.catch(error => console.log(error));

mavencc.artifactByFullyClassname('org.specs.runner.JUnit', 5)
.then(console.log)
.catch(error => console.log(error));

mavencc.artifactBySHA1('35379fb6526fd019f331542b4e9ae2e566c57933', 5)
.then(console.log)
.catch(error => console.log(error));

mavencc.searchTags('sbtplugin', 5)
.then(console.log)
.catch(error => console.log(error));

mavencc.downloadArtifact('com/jolira/guice/3.0.0/guice-3.0.0.pom', '/tmp/guice.pom')
.then(console.log)
.catch(error => console.log(error));
```

## You can use to

* A basic artifact search.
* Search any artifactId irrespective of groupId
* List all versions of an artifact.
* Search for all artifacts in a groupId.