Skip to content
This repository has been archived by the owner on Dec 19, 2023. It is now read-only.
/ node-unrar Public archive
forked from scopsy/node-unrar

Wrapper for Unrar library.

License

Notifications You must be signed in to change notification settings

418sec/node-unrar

 
 

Repository files navigation

node-unrar NPM version Dependency Status

Unrar wrapper for Node-js.

node-unrar

Created to unrar archives using unrar library.

Installation

npm install node-unrar

You must install unrar from rarlab website and put it in your PATH.

Example

var Unrar = require('node-unrar');

var rar = new Unrar('/path/to/file.rar');

/// Create '/path/to/dest/' before rar.extract()

rar.extract('/path/to/dest/', null, function (err) {
    //file extracted successfully.
});

TODO

Utilize a second argument as an options object for password protected rar's and other available options.

License

Apache-2.0 ©

Releases

No releases published

Packages

 
 
 

Languages

  • JavaScript 100.0%