Skip to content

Commit 7e29c38

Browse files
committed
Rewrite to TypeScript
1 parent ec94525 commit 7e29c38

37 files changed

+3184
-2748
lines changed

.eslintrc

-10
This file was deleted.

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@ bin
22
node_modules
33
.idea
44
.DS_Store
5-
coverage
5+
coverage
6+
dist
7+
*.log

.npmignore

+8-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,14 @@ bin
22
node_modules
33
.idea
44
.gitignore
5-
.eslintrc
65
.npmignore
76
.DS_Store
8-
.travis.yml
97
coverage
10-
tests
8+
src
9+
.travis.yml
10+
.prettierrc
11+
jest.json
12+
tsconfig.json
13+
tslint.json
14+
yarn.lock
15+
*.log

.prettierrc

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"parser": "typescript",
3+
"singleQuote": true,
4+
"trailingComma": "all",
5+
"printWidth": 150
6+
}

.travis.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
language: node_js
22

33
node_js:
4-
- "9"
4+
- "10"
55
- "8"
6-
- "7"
76

87
script:
98
- yarn test --coverage

README.md

+47-62
Original file line numberDiff line numberDiff line change
@@ -1,94 +1,65 @@
1-
Node p7zip wrapper
2-
==================
1+
# Node p7zip
32

43
[![travis build](https://img.shields.io/travis/jbdemonte/node-p7zip.svg)](https://travis-ci.org/jbdemonte/node-p7zip)
54
[![Coverage Status](https://coveralls.io/repos/github/jbdemonte/node-p7zip/badge.svg?branch=master)](https://coveralls.io/github/jbdemonte/node-p7zip?branch=master)
6-
[![NPM Version](https://img.shields.io/npm/v/p7zip.svg)](https://www.npmjs.com/package/p7zip)
75
![node (tag)](https://img.shields.io/node/v/p7zip/latest.svg)
86

7+
## Description
98

10-
A node wrapper for p7zip including the latest version of `7za`.
9+
Use `p7zip` directly in JavaScript or TypeScript.
1110

12-
Limitation
13-
----------
11+
You do not need to install anything by your own.
1412

15-
Because p7zip is a portage of 7-zip for linux systems, this package is not usable on Windows.
13+
During the installation process, the latest version of [p7zip](https://github.com/jbdemonte/p7zip) is compiled to be used.
1614

17-
Description
18-
-----------
15+
## Limitation
1916

20-
During the installation process, the latest version of [p7zip](https://github.com/jbdemonte/p7zip) is compiled to be used.
21-
This module handle both callback and promise syntax.
17+
Because p7zip is a portage of 7-zip for linux systems, this package is not usable on Windows.
2218

23-
Installation
24-
------------
19+
## Installation
2520

2621
```
2722
npm install --save p7zip
2823
```
29-
30-
31-
Usage
32-
-----
24+
or
3325
```
34-
var p7zip = require('p7zip');
35-
36-
p7zip
37-
.add('test.7z', '*.js')
38-
.then(function (count) {
39-
console.log('File added: ', count);
40-
})
41-
.then(function () {
42-
return p7zip.list('test.7z');
43-
})
44-
.then(function (data) {
45-
console.log('Path: ', data.path);
46-
console.log('Type: ', data.type);
47-
console.log('Method: ', data.method);
48-
49-
data.files.forEach(function (file, index) {
50-
console.log('\nFile #' + (index + 1));
51-
console.log(file.name);
52-
console.log(file.date);
53-
});
54-
})
55-
.catch(function (err) {
56-
console.log(err);
57-
});
26+
yarn add p7zip
5827
```
5928

60-
Promise library use node Promise, but may be replaced:
6129

62-
```
63-
var p7zip = require('p7zip');
30+
## Usage
6431

65-
p7zip.Promise = require('bluebird');
6632
```
33+
import * as p7zip from 'p7zip';
6734
6835
69-
API
70-
---
36+
const count = await p7zip.add('test.7z', '*.js');
37+
console.log('File added: ', count);
7138
72-
### p7zip.add
39+
const content = await p7zip.read('test.7z');
40+
console.log('Path: ', content.path);
41+
console.log('Type: ', content.type);
42+
console.log('Method: ', content.method);
7343
74-
**Arguments**
75-
* `archive` The archive path.
76-
* `files` The file list to add (string or array of string).
77-
* `switches` Switches (string or array of string).
44+
for (const file of data.files) {
45+
console.log(file.name, file.date);
46+
}
47+
48+
await p7zip.extract('test.7z', './tmp')
49+
```
7850

79-
**Returns**
80-
* `count` The file count added.
8151

52+
## Methods
8253

83-
### p7zip.delete
54+
### p7zip.add
8455

8556
**Arguments**
8657
* `archive` The archive path.
87-
* `files` The file list to delete (string or array of string).
58+
* `files` The file list to add (string or array of string).
8859
* `switches` Switches (string or array of string).
8960

9061
**Returns**
91-
* none
62+
* `count` The file count added.
9263

9364

9465
### p7zip.extract
@@ -106,14 +77,14 @@ Default overwrite mode is set to "Overwrite All existing files without prompt" u
10677
* none
10778

10879

109-
### p7zip.list
80+
### p7zip.read
11081

11182
**Arguments**
11283
* `archive` The archive path.
11384
* `switches` Switches (string or array of string).
11485

11586
**Returns**
116-
* `data` object
87+
* `data` Archive
11788

11889
* `data.path` string
11990
* `data.type` string
@@ -122,26 +93,40 @@ Default overwrite mode is set to "Overwrite All existing files without prompt" u
12293
* `data.method` string
12394
* `data.solid` string
12495
* `data.blocks` number
125-
* `data.directories` array (same as `data.files`)
126-
* `data.files` array
96+
* `data.directories` array of Entry
97+
* `data.files` array of Entry
12798

99+
with Entry:
128100
* `data.files[].attr` string
129101
* `data.files[].compressed` number
130102
* `data.files[].date` date
131103
* `data.files[].name` number
132104
* `data.files[].size` number
133105

134106

107+
### p7zip.remove
108+
109+
**Arguments**
110+
* `archive` The archive path.
111+
* `files` The file list to delete (string or array of string).
112+
* `switches` Switches (string or array of string).
113+
114+
**Returns**
115+
* none
116+
117+
135118
### p7zip.rename
136119

137120
**Arguments**
138121
* `archive` The archive path.
139-
* `files` Hashmap of the file list to rename ({oldName: newName, ...}.
122+
* `oldName` The original name
123+
* `newName` The replacement name
140124
* `switches` Switches (string or array of string).
141125

142126
**Returns**
143127
* none
144128

129+
145130
### p7zip.update
146131

147132
**Arguments**

index.js

-23
This file was deleted.

jest.json

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"testEnvironment": "node",
3+
"transform": {
4+
"^.+\\.ts$": "ts-jest"
5+
},
6+
"modulePaths": [
7+
"<rootDir>/src/"
8+
],
9+
"moduleFileExtensions": [
10+
"ts",
11+
"js",
12+
"json"
13+
],
14+
"collectCoverageFrom" : [
15+
"src/**/*.ts",
16+
"!src/index.ts",
17+
"!**/node_modules/**"
18+
],
19+
"coverageReporters": ["json", "lcov"],
20+
"coverageDirectory": "coverage",
21+
"verbose": true,
22+
"globals": {
23+
"ts-jest": {
24+
"tsConfig": "./tsconfig.json"
25+
}
26+
}
27+
}

lib/add.js

-29
This file was deleted.

lib/delete.js

-16
This file was deleted.

lib/extract.js

-33
This file was deleted.

0 commit comments

Comments
 (0)