# apacheconf

> Apacheconf is an apache config file parser

Latest version **0.0.5** (published 2013-11-29) · MIT license · 0 weekly downloads

## Install

```sh
npm install apacheconf
pnpm add apacheconf
yarn add apacheconf
bun add apacheconf
```

## 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.5 |
| Published | 2013-11-29 |
| First published | 2012-08-25 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 3 |
| Known vulnerabilities | 0 (+2 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 11 |
| Author | Christian Tellnes |
| Maintainers | tellnes |
| Keywords | apache, parser, config, httpd |

## Links

- npm: https://www.npmjs.com/package/apacheconf
- Repository: https://github.com/tellnes/node-apacheconf
- Issues: https://github.com/tellnes/node-apacheconf/issues
- npm.io page: https://npm.io/package/apacheconf

## Dependencies (3)

- [glob](https://npm.io/package/glob.md) ~3.2.1
- [debug](https://npm.io/package/debug.md) ~0.7.2
- [event-stream](https://npm.io/package/event-stream.md) ~3.0.2

## Alternatives

- [babylon](https://npm.io/package/babylon.md) — 5.1M weekly downloads
- [csscolorparser](https://npm.io/package/csscolorparser.md) — 3.7M weekly downloads
- [expr-eval-fork](https://npm.io/package/expr-eval-fork.md) — 1.5M weekly downloads
- [@leeoniya/ufuzzy](https://npm.io/package/@leeoniya/ufuzzy.md) — 247.7K weekly downloads
- [xml-parser](https://npm.io/package/xml-parser.md) — 78.4K weekly downloads

## Recent versions

- 0.0.5 (latest) — 2013-11-29
- 0.0.4 — 2013-06-21
- 0.0.3 — 2012-08-25
- 0.0.2 — 2012-08-25
- 0.0.1 — 2012-08-25

## README

# Apacheconf parser for Node.js

[![Dependency Status](https://gemnasium.com/tellnes/node-apacheconf.png)](https://gemnasium.com/tellnes/node-apacheconf)

Apacheconf is an apache config file parser for Node.js.


## Example

```js

    var apacheconf = require('apacheconf')

    apacheconf('/etc/apache2/httpd.conf', function(err, config, parser) {
      if (err) throw err

      console.log(config)
    })
```


## Install

    npm install apacheconf


## Licence

MIT

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