# moxie-zip

> Yet another zip library

Latest version **0.0.4** (published 2014-09-29) · 0 weekly downloads

## Install

```sh
npm install moxie-zip
pnpm add moxie-zip
yarn add moxie-zip
bun add moxie-zip
```

## Health

**Score 10/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; low quality score; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.4 |
| Published | 2014-09-29 |
| First published | 2013-04-15 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=0.8.0 |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 11 |
| Author | Johan Sörlin |
| Maintainers | spocke |
| Keywords | zip |

## Links

- npm: https://www.npmjs.com/package/moxie-zip
- Repository: http://github.com/spocke/moxie-zip
- Homepage: https://github.com/spocke/moxie-zip
- Issues: http://github.com/spocke/moxie-zip/issues
- npm.io page: https://npm.io/package/moxie-zip

## 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.0.4 (latest) — 2014-09-29
- 0.0.3 — 2013-10-22
- 0.0.2 — 2013-04-15
- 0.0.1 — 2013-04-15

## README

moxie-zip
=========

This is another zip library for node js. We decided to write our own since we had issues with the current once that exists.

It's a very simple library:
```javascript
var ZipWriter = require("moxie-zip").ZipWriter;
var zip = new ZipWriter();

zip.addFile("myfile.txt", "./myfile.txt");
zip.addData("myfile.txt", "Hello world!");
zip.addDir("mydir");

zip.toBuffer(function(buf) {
});

zip.saveAs("my.zip", function() {
   console.log("zip written.");
});
```

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