# marketplace-client

> Marketplace Installer Client

Latest version **0.1.3** (published 2014-05-29) · ISC license · 0 weekly downloads

## Install

```sh
npm install marketplace-client
pnpm add marketplace-client
yarn add marketplace-client
bun add marketplace-client
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.3 |
| Published | 2014-05-29 |
| First published | 2014-05-27 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | James Fickel |
| Maintainers | jfickel |

## Links

- npm: https://www.npmjs.com/package/marketplace-client
- Repository: https://github.com/JFickel/marketplace-client
- Issues: https://github.com/JFickel/marketplace-client/issues
- npm.io page: https://npm.io/package/marketplace-client

## Recent versions

- 0.1.3 (latest) — 2014-05-29
- 0.1.2 — 2014-05-27
- 0.1.1 — 2014-05-27
- 0.1.0 — 2014-05-27

## README

# marketplace-client

npm module that acts as the base for the marketplace client installer

### Installation

```shell
npm install marketplace-client --save-dev
```

### Grunt Usage

```js
var marketplaceClient = require('marketplace-client');

module.exports = function(grunt) {
  grunt.registerTask('marketplace', 'Run the marketplace installer client.', function() {
    this.async();
    marketplaceClient.start({ appName: 'my-app-name' });
  })
}
```

### Broccoli Usage

```js
var marketplaceClient = require('marketplace-client');
marketplaceClient.start({ appName: "my-app-name" });
```

### Gulp Usage

```js
var gulp = require('gulp');
var marketplaceClient = require('marketplace-client');

gulp.task('marketplace', function() {
  marketplaceClient.start({ appName: 'my-app-name' });
})
```

---
_Source: https://npm.io/package/marketplace-client · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
