# gunzip-file

> Extract a source .gz archive to a specified destination file.

Latest version **0.1.1** (published 2015-11-30) · MIT license · 0 weekly downloads

## Install

```sh
npm install gunzip-file
pnpm add gunzip-file
yarn add gunzip-file
bun add gunzip-file
```

## 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.1.1 |
| Published | 2015-11-30 |
| First published | 2015-11-30 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 12 |
| Author | Marin Atanasov |
| Maintainers | tyxla |
| Keywords | gunzip, gz, extract, gzip |

## Links

- npm: https://www.npmjs.com/package/gunzip-file
- Repository: https://github.com/tyxla/gunzip-file
- Issues: https://github.com/tyxla/gunzip-file/issues
- npm.io page: https://npm.io/package/gunzip-file

## Alternatives

- [lodash.startswith](https://npm.io/package/lodash.startswith.md) — 769.7K weekly downloads
- [@tarojs/service](https://npm.io/package/@tarojs/service.md) — 33.9K weekly downloads
- [io.extendreality.tilia.indicators.spatialtargets.unity](https://npm.io/package/io.extendreality.tilia.indicators.spatialtargets.unity.md) — 131 weekly downloads
- [@rtarojs/taro](https://npm.io/package/@rtarojs/taro.md) — 90 weekly downloads
- [node-branch-io](https://npm.io/package/node-branch-io.md) — 50 weekly downloads

## Recent versions

- 0.1.1 (latest) — 2015-11-30

## README

# gunzip-file

Extract a source .gz archive to a specified destination file.

```
npm install gunzip-file
```

[![Build Status](https://travis-ci.org/tyxla/gunzip-file.svg)](https://travis-ci.org/tyxla/gunzip-file)

## Usage

Pass a source `.gz` file and a destination file and the `.gz` will be extracted to the target file.

``` js
gunzip('example.json.gz', 'example.json');
```

Additionally, you can pass a callback that will be executed when the extraction has completed.

``` js
gunzip('example.json.gz', 'example.json', function() {
	console.log('This is called when the extraction is completed.');
});
```

## License

MIT

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