# continuum-sdk

> A Javascript SDK for VersionOne Continuum

Latest version **1.1.2** (published 2017-02-22) · MIT license · 0 weekly downloads

## Install

```sh
npm install continuum-sdk
pnpm add continuum-sdk
yarn add continuum-sdk
bun add continuum-sdk
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.2 |
| Published | 2017-02-22 |
| First published | 2017-02-17 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Alejandro Guzman |
| Maintainers | agguzman |
| Keywords | VersionOne, V1, Continuum, SDK |

## Links

- npm: https://www.npmjs.com/package/continuum-sdk
- npm.io page: https://npm.io/package/continuum-sdk

## Dependencies (1)

- [base-64](https://npm.io/package/base-64.md) ^0.1.0

## Recent versions

- 1.1.2 (latest) — 2017-02-22
- 1.1.1 — 2017-02-22
- 1.1.0 — 2017-02-22
- 1.0.2 — 2017-02-21
- 1.0.1 — 2017-02-17
- 1.0.0 — 2017-02-17

## README

# Continuum SDK
A Javascript SDK for VersionOne Continuum

### Clone from Github
```
git clone https://github.com/agguzman/continuum-sdk
```

### Install via NPM

```
npm install continuum-sdk
```

### Axios example
```javascript
import sdk, { axiosConnector } from 'continuum-sdk/dist';
import axios from 'axios';
 
const axiosConnectedSdk = axiosConnector(axios)(sdk);
const ctm = axiosConnectedSdk('localhost', 8080, 'http')
    // .withCreds('<USERNAME>', '<PASSWORD>');
    .withToken('<TOKEN>');
 

ctm.create('project', {name: 'My First Project'})
    .then(response => console.log)
    .catch(error => console.log);
```

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