New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

zipper

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

zipper

Insanely simple zipfile creator for node.js

latest
npmnpm
Version
0.3.0
Version published
Maintainers
1
Created
Source

Insanely simple zipfile creator for node.js.

Build Status

Developed by Flow Pilots: http://www.flowpilots.com/

Usage

zipper = require('zipper').Zipper;

var zipfile = new zipper('/path/to/my/zipfile.zip');
zipfile.addFile('myfile.txt', '/path/to/myfile.txt', function (err) {
    if (err) throw err;
    // Do stuff
});

The zip file will be created if it does not exist already.

Installation

You can install the latest tag via npm:

$ npm install zipper

Be sure to install libzip-devel (Fedora etc.) or libzip-dev (Ubuntu etc.) before installing on Linux.

Credits

Inspired by node-zipfile (written by Dane Springmeyer).

Keywords

zip

FAQs

Package last updated on 06 May 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts