# @noodlex/node-kodi-fix

> Node interface for Kodi using JSON-RPC From 'node-kodi' created by Martin Verup See : https://github.com/martinverup/node-kodi

Latest version **0.0.7-alpha** (published 2019-03-06) · GPL-2.0-only license · 0 weekly downloads

## Install

```sh
npm install @noodlex/node-kodi-fix
pnpm add @noodlex/node-kodi-fix
yarn add @noodlex/node-kodi-fix
bun add @noodlex/node-kodi-fix
```

## 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.0.7-alpha |
| Published | 2019-03-06 |
| First published | 2019-03-02 |
| Weekly downloads | 0 |
| License | GPL-2.0-only |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 91.8 KB |
| Known vulnerabilities | 0 (+2 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Christopher Rombach |
| Maintainers | noodlex |
| Keywords | kodi, htpc, media, movies, tv |

## Links

- npm: https://www.npmjs.com/package/@noodlex/node-kodi-fix
- Repository: https://github.com/Noodlex/node-kodi
- Issues: https://github.com/Noodlex/node-kodi/issues
- npm.io page: https://npm.io/package/@noodlex/node-kodi-fix

## Dependencies (2)

- [q](https://npm.io/package/q.md) ~0.8.12
- [request](https://npm.io/package/request.md) ~2.9.203

## Recent versions

- 0.0.7-alpha (latest) — 2019-03-06
- 0.0.6-alpha — 2019-03-06
- 0.0.5-alpha — 2019-03-02
- 0.0.4-alpha — 2019-03-02
- 0.0.3-alpha — 2019-03-02

## README

Please note, this project isn't being updated anymore - you are welcome to fork it and continue development

node-kodi
================
Node interface for Kodi using [JSON-RPC](http://kodi.wiki/?title=JSON-RPC_API).

Usage example
================
```javascript
var kodi_rpc = require('node-kodi');

var kodi = new kodi_rpc({
    url: <Kodi HOST>,
    user: <Kodi USERNAME>,
    password: <Kodi PASSWORD>
});

kodi.player.getCurrentlyPlayingVideo().then(function(r) {
    console.log(r);
});

kodi.input.sendText({"text": "This text is sent to Kodi"}).then(function(r) {
    console.log(r);
});

// OR

kodi.input.sendText('This text is sent to Kodi').then(function(r) {
    console.log(r);
});


```

---
_Source: https://npm.io/package/@noodlex/node-kodi-fix · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
