# tellstick.conf-parser

> Parsing Tellstick.conf files into Javascript objects.

Latest version **1.2.0** (published 2017-10-15) · ISC license · 0 weekly downloads

## Install

```sh
npm install tellstick.conf-parser
pnpm add tellstick.conf-parser
yarn add tellstick.conf-parser
bun add tellstick.conf-parser
```

## 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.2.0 |
| Published | 2017-10-15 |
| First published | 2016-04-06 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Anton Amlinger |
| Maintainers | amlinger |
| Keywords | Tellstick, Telldus, tellstick.conf |

## Links

- npm: https://www.npmjs.com/package/tellstick.conf-parser
- Repository: https://github.com/amlinger/tellstick.conf-parser
- Homepage: https://github.com/amlinger/tellstick.conf-parser#readme
- Issues: https://github.com/amlinger/tellstick.conf-parser/issues
- npm.io page: https://npm.io/package/tellstick.conf-parser

## Recent versions

- 1.2.0 (latest) — 2017-10-15
- 1.1.0 — 2016-04-09
- 1.0.1 — 2016-04-06
- 1.0.0 — 2016-04-06

## README

[![Build Status](https://travis-ci.org/amlinger/tellstick.conf-parser.svg?branch=master)](https://travis-ci.org/amlinger/tellstick.conf-parser)

# tellstick.conf Parser
Parsing tellstick.conf files into Javascript objects.

__Note that this is still very much a work in progress.__

## Installation

```
npm install tellstick.conf-parser
```

## Usage
The parser comes with just a `parse`-method, that accepts a path to your configuration file.

```js
require('tellstick.conf-parser')
  .parse('/etc/tellstick.conf')
  .then(function(obj) {
    // Do stuff with your configuration
  });
```

Remember to restart your Telldus deamon to get the changes in your config activated:
```
[sudo] service telldusd restart
```

## Contribute
1. Fork it!
2. Create your feature branch: `git checkout -b my-new-feature`
3. Commit your changes: `git commit -am 'Add some feature'`
4. Push to the branch: `git push origin my-new-feature`
5. Submit a pull request!

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