pompelmi 0.2.0-alhoa.0 → 0.2.0-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +19 -16
- package/package.json +27 -1
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<a href="https://github.com/
|
|
2
|
+
<a href="https://github.com/pompelmi/pompelmi" target="_blank" rel="noopener noreferrer">
|
|
3
3
|
<img
|
|
4
|
-
src="
|
|
4
|
+
src="https://raw.githubusercontent.com/pompelmi/pompelmi/refs/heads/main/assets/logo.svg"
|
|
5
5
|
alt="pompelmi"
|
|
6
6
|
width="120"
|
|
7
7
|
height="120"
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
<a href="https://www.npmjs.com/package/pompelmi">
|
|
25
25
|
<img alt="downloads" src="https://img.shields.io/npm/dw/pompelmi">
|
|
26
26
|
</a>
|
|
27
|
-
<a href="https://github.com/
|
|
27
|
+
<a href="https://github.com/pompelmi/pompelmi/blob/main/LICENSE">
|
|
28
28
|
<img alt="license" src="https://img.shields.io/npm/l/pompelmi">
|
|
29
29
|
</a>
|
|
30
30
|
<img alt="node" src="https://img.shields.io/node/v/pompelmi">
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
</p>
|
|
34
34
|
|
|
35
35
|
<p align="center">
|
|
36
|
-
<a href="#features">Features</a> •
|
|
37
36
|
<a href="#install">Install</a> •
|
|
37
|
+
<a href="#features">Features</a> •
|
|
38
38
|
<a href="#quickstart">Quickstart</a> •
|
|
39
39
|
<a href="#api">API</a> •
|
|
40
40
|
<a href="#browser-remote-yara">Browser (Remote YARA)</a> •
|
|
@@ -46,6 +46,21 @@
|
|
|
46
46
|
|
|
47
47
|
---
|
|
48
48
|
|
|
49
|
+
## Install
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
# library
|
|
53
|
+
npm i pompelmi
|
|
54
|
+
|
|
55
|
+
# (dev) scripts / server example might use these
|
|
56
|
+
npm i -D tsx express multer cors
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
> The Node YARA engine uses native binaries via platform packages (pulled automatically by dependencies). **No brew / apt** required for consumers.
|
|
60
|
+
|
|
61
|
+
---
|
|
62
|
+
|
|
63
|
+
|
|
49
64
|
## Features
|
|
50
65
|
|
|
51
66
|
- **Node.js first**: recursive directory scanning with **YARA** (no brew/apt required).
|
|
@@ -62,19 +77,7 @@
|
|
|
62
77
|
|
|
63
78
|
---
|
|
64
79
|
|
|
65
|
-
## Install
|
|
66
|
-
|
|
67
|
-
```bash
|
|
68
|
-
# library
|
|
69
|
-
npm i pompelmi
|
|
70
|
-
|
|
71
|
-
# (dev) scripts / server example might use these
|
|
72
|
-
npm i -D tsx express multer cors
|
|
73
|
-
```
|
|
74
80
|
|
|
75
|
-
> The Node YARA engine uses native binaries via platform packages (pulled automatically by dependencies). **No brew / apt** required for consumers.
|
|
76
|
-
|
|
77
|
-
---
|
|
78
81
|
|
|
79
82
|
## Quickstart
|
|
80
83
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pompelmi",
|
|
3
|
-
"version": "0.2.0-
|
|
3
|
+
"version": "0.2.0-alpha.2",
|
|
4
4
|
"description": "Prototipo di scanner di file lato cliente",
|
|
5
5
|
"main": "dist/pompelmi.cjs.js",
|
|
6
6
|
"module": "dist/pompelmi.esm.js",
|
|
@@ -63,5 +63,31 @@
|
|
|
63
63
|
},
|
|
64
64
|
"files": [
|
|
65
65
|
"dist/"
|
|
66
|
+
],
|
|
67
|
+
"keywords": [
|
|
68
|
+
"security",
|
|
69
|
+
"cybersecurity",
|
|
70
|
+
"malware",
|
|
71
|
+
"threat-detection",
|
|
72
|
+
"security-scanner",
|
|
73
|
+
"file-scanner",
|
|
74
|
+
"file-scanning",
|
|
75
|
+
"file",
|
|
76
|
+
"files",
|
|
77
|
+
"filesystem",
|
|
78
|
+
"directory",
|
|
79
|
+
"node",
|
|
80
|
+
"nodejs",
|
|
81
|
+
"javascript",
|
|
82
|
+
"typescript",
|
|
83
|
+
"browser",
|
|
84
|
+
"web",
|
|
85
|
+
"api",
|
|
86
|
+
"http",
|
|
87
|
+
"express",
|
|
88
|
+
"backend",
|
|
89
|
+
"server",
|
|
90
|
+
"rest",
|
|
91
|
+
"devsecops"
|
|
66
92
|
]
|
|
67
93
|
}
|