# kinvey-html5-sdk

> Kinvey JavaScript SDK for HTML5 applications.

Latest version **9.0.0** (published 2023-07-25) · Apache-2.0 license · 0 weekly downloads

## Install

```sh
npm install kinvey-html5-sdk
pnpm add kinvey-html5-sdk
yarn add kinvey-html5-sdk
bun add kinvey-html5-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 | 9.0.0 |
| Published | 2023-07-25 |
| First published | 2016-02-26 |
| Weekly downloads | 0 |
| License | Apache-2.0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 5 |
| Unpacked size | 87.1 KB |
| Known vulnerabilities | 0 (+27 in 3 direct dependencies) |
| Install scripts | no |
| GitHub stars | 25 |
| Author | Thomas Conner |
| Maintainers | kinvey, dimofeev, tsakata1, mkapostolov |
| Keywords | Kinvey, JavaScript, HTML5 |

## Links

- npm: https://www.npmjs.com/package/kinvey-html5-sdk
- Repository: https://github.com/Kinvey/js-sdk
- Homepage: https://github.com/Kinvey/js-sdk/tree/master/packages/html5-sdk
- Issues: https://github.com/Kinvey/js-sdk/issues
- npm.io page: https://npm.io/package/kinvey-html5-sdk

## Dependencies (5)

- [axios](https://npm.io/package/axios.md) 0.26.1
- [tslib](https://npm.io/package/tslib.md) 2.5.3
- [pubnub](https://npm.io/package/pubnub.md) 5.0.1
- [lodash-es](https://npm.io/package/lodash-es.md) 4.17.21
- [kinvey-js-sdk](https://npm.io/package/kinvey-js-sdk.md) 8.0.0

## Alternatives

- [@tsparticles/shape-image](https://npm.io/package/@tsparticles/shape-image.md) — 303.7K weekly downloads
- [@tsparticles/shape-line](https://npm.io/package/@tsparticles/shape-line.md) — 233.7K weekly downloads
- [stringify-attributes](https://npm.io/package/stringify-attributes.md) — 58.6K weekly downloads
- [mobile-drag-drop](https://npm.io/package/mobile-drag-drop.md) — 46.3K weekly downloads
- [@comunica/actor-rdf-parse-html](https://npm.io/package/@comunica/actor-rdf-parse-html.md) — 29.2K weekly downloads

## Recent versions

- 9.0.0 (latest) — 2023-07-25
- 9.0.0-angular-12-alpha.1 (dev) — 2023-07-21
- 6.0.0-next.1 (next) — 2021-06-18
- 3.11.4-beta.0 (beta) — 2018-06-29
- 3.9.3-rc.16 (rc) — 2017-11-15
- 5.1.5 — 2022-12-02
- 8.0.0 — 2022-07-15
- 7.0.3 — 2022-07-14
- 5.1.4 — 2022-06-18
- 5.1.3 — 2022-06-17
- 5.1.2 — 2022-05-26
- 7.0.2 — 2022-04-28
- 7.0.1 — 2022-04-27
- 7.0.0 — 2021-10-25
- 6.0.0 — 2021-07-30
- … 123 more at https://npm.io/package/kinvey-html5-sdk/versions

## README

# Kinvey HTML5 SDK

## Installation

From the command prompt go to your app's root folder and execute:

```bash
npm i kinvey-html5-sdk@next
```

or if you would prefer you can just [download the latest bundle](https://download.kinvey.com/js/kinvey-html5-sdk-3.13.0-next.28.js) and include it in your application.

## Usage

### Initialize SDK

We need to initialize the SDK.

#### JavaScript with NPM
```js
import * as Kinvey from 'kinvey-html5-sdk';

Kinvey.init({
  appKey: '<yourAppKey>',
  appSecret: '<yourAppSecret>'
});
```

#### JavaScript with bundle
```js
window.Kinvey.init({
  appKey: '<yourAppKey>',
  appSecret: '<yourAppSecret>'
});
```

#### Angular
Please take a look at our `kinvey-angular-sdk`.

## Build

If you would like to build the SDK yourself, clone the monorepo, then:
- `npm i`
- `npm run build`

You can then install the SDK build by running `npm i /<localpath>/packages/html5-sdk`

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