# service-machine-v1

> swagger client for service-machine-v1

Latest version **0.0.43** (published 2017-11-29) · Unlicense license · 0 weekly downloads

## Install

```sh
npm install service-machine-v1
pnpm add service-machine-v1
yarn add service-machine-v1
bun add service-machine-v1
```

## Health

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

Positive: has types; no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.43 |
| Published | 2017-11-29 |
| First published | 2017-10-20 |
| Weekly downloads | 0 |
| License | Unlicense |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 (+25 in 1 direct dependencies) |
| Install scripts | no |
| Author | Swagger Codegen Contributors |
| Maintainers | cooperl |
| Keywords | swagger-client |

## Links

- npm: https://www.npmjs.com/package/service-machine-v1
- npm.io page: https://npm.io/package/service-machine-v1

## Dependencies (2)

- [axios](https://npm.io/package/axios.md) ^0.16.2
- [webstomp-client](https://npm.io/package/webstomp-client.md) ^1.0.3

## Recent versions

- 0.0.43 (latest) — 2017-11-29
- 0.0.42 — 2017-11-29
- 0.0.41 — 2017-11-28
- 0.0.40 — 2017-11-27
- 0.0.39 — 2017-11-27
- 0.0.35-gps.1 — 2017-11-24
- 0.0.38 — 2017-11-16
- 0.0.37 — 2017-11-15
- 0.0.35 — 2017-11-14
- 0.0.34 — 2017-11-13
- 0.0.33 — 2017-11-10
- 0.0.30 — 2017-10-27
- 0.0.29 — 2017-10-26
- 0.0.27 — 2017-10-24
- 0.0.26 — 2017-10-20
- … 2 more at https://npm.io/package/service-machine-v1/versions

## README

## service-machine-v1@0.0.43

### Building

To build an compile the typescript sources to javascript use:
```
npm install
npm run build
```

### publishing

First build the package than run ```npm publish```

### consuming

navigate to the folder of your consuming project and run one of next commando's.

_published:_

```
npm install service-machine-v1@0.0.43 --save
```

_unPublished (not recommended):_

```
npm install PATH_TO_GENERATED_PACKAGE --save
```

In your Vuejs2 bootstrap:

```
import ligneV1 from 'service-ligne-V1'
...
Vue.use(ligneV1, 'http://127.0.0.1:8181');
```

In your components for API:

```
import ligneV1 from 'service-ligne-V1'
...
let details = lignev1.createLigneDetails()
details.label = 'test'
lignev1.createUsingPOST3(details).then(() => {
    lignev1.getAllUsingGET3().then(data => console.log(data))
})
```

In your compoennts for topic listener:

```
import lignev1 from 'service-ligne-v1'

export default {
  ...
  created: function () {
    this.$topics.subscribe(lignev1.registerTopicTerminee(event => {
      console.log(event)
    }))
  },
```

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