# talktalk-super

> Designed for making API calls to TalkTalk Super Routers

Latest version **1.0.2** (published 2018-07-30) · MIT license · 0 weekly downloads

## Install

```sh
npm install talktalk-super
pnpm add talktalk-super
yarn add talktalk-super
bun add talktalk-super
```

## 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.0.2 |
| Published | 2018-07-30 |
| First published | 2018-06-01 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 9.6 KB |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 1 |
| Maintainers | tylerkf |
| Keywords | talktalk, router, wifi, api, huawei |

## Links

- npm: https://www.npmjs.com/package/talktalk-super
- Repository: https://github.com/tylerkf/node-talktalk-super
- Issues: https://github.com/tylerkf/node-talktalk-super/issues
- npm.io page: https://npm.io/package/talktalk-super

## Dependencies (2)

- [cheerio](https://npm.io/package/cheerio.md) ^1.0.0-rc.2
- [request](https://npm.io/package/request.md) ^2.87.0

## Alternatives

- [express-promise-router](https://npm.io/package/express-promise-router.md) — 736.1K weekly downloads
- [next-usequerystate](https://npm.io/package/next-usequerystate.md) — 29.8K weekly downloads
- [@bitkyc08/opencodex](https://npm.io/package/@bitkyc08/opencodex.md) — 4.6K weekly downloads
- [lynkr](https://npm.io/package/lynkr.md) — 575 weekly downloads
- [baremetal.js](https://npm.io/package/baremetal.js.md) — 42 weekly downloads

## Recent versions

- 1.0.2 (latest) — 2018-07-30
- 1.0.1 — 2018-06-03
- 1.0.0 — 2018-06-01

## README

# node-talktalk-super

[![NPM](https://nodei.co/npm/talktalk-super.png?compact=true)](https://nodei.co/npm/talktalk-super/)

Designed for making API calls to TalkTalk Super Routers.

## Installation
```
npm install talktalk-super
```

## Usage
Import the ```SuperRouter``` class and create an instance:
```js
const { SuperRouter } = require('talktalk-super');

const router = new SuperRouter('http://192.168.1.1', 'admin', 'password')
```

Then login and use the request function to make calls

```js
router.login((err, res) => {
  if (err)
    return;

  router.request('/api/system/HostInfo', (err, res, html) => {
    if (err)
      return;

    print(html);
  });
});
```

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