# service-application-v1

> swagger client for service-application-v1

Latest version **1.1.34** (published 2018-07-11) · Unlicense license · 0 weekly downloads

## Install

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

## Health

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

Positive: has types; no vulnerabilities.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.34 |
| Published | 2018-07-11 |
| First published | 2017-10-26 |
| Weekly downloads | 0 |
| License | Unlicense |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 83.4 KB |
| 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-application-v1
- npm.io page: https://npm.io/package/service-application-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

- 1.1.34 (latest) — 2018-07-11
- 1.1.33 — 2018-07-10
- 1.1.32 — 2018-07-03
- 1.1.31 — 2018-07-03
- 1.1.30 — 2018-07-03
- 1.1.29 — 2018-07-03
- 1.1.28 — 2018-06-04
- 1.1.27 — 2018-05-23
- 1.1.26 — 2018-05-18
- 1.1.25 — 2018-05-18
- 1.1.24 — 2018-05-18
- 1.1.23 — 2018-05-17
- 1.1.22 — 2018-05-03
- 1.1.21 — 2018-05-01
- 1.1.20 — 2018-04-27
- … 52 more at https://npm.io/package/service-application-v1/versions

## README

## service-application-v1@1.1.34

### 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-application-v1@1.1.34 --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)
    }))
  },
  methods: {
    uneMethode: function() {
      this.subscribeTopic(lignev1.registerTopicTermineeFor(23, event => {
        console.log(event);
      }
    },
    uneAutreMethode: function {
      this.unsubscribeTopic(lignev1.unregisterTopicTermineeFor(23));
    }
  }
```

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