-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
75 lines (63 loc) · 1.87 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import inquirer from "inquirer";
import qr from "qr-image";
import fs from "fs";
import path from "path";
import { fileURLToPath } from "url";
// Obtener __dirname en módulos ES
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
// Función para generar el código QR y guardar la URL
const generateQRCode = (url) => {
const qrCode = qr.image(url, { type: 'png' });
const qrCodePath = path.join(__dirname, 'qr_img.png');
const fileStream = fs.createWriteStream(qrCodePath);
qrCode.pipe(fileStream);
fileStream.on('finish', () => {
console.log(`QR code generated and saved at ${qrCodePath}`);
});
fileStream.on('error', (err) => {
console.error('Error writing QR code to file:', err);
});
};
// Función para guardar la URL en un archivo de texto
const saveURLToFile = (url) => {
const filePath = path.join(__dirname, 'URL.txt');
fs.writeFile(filePath, url, (err) => {
if (err) {
console.error('Error saving URL to file:', err);
} else {
console.log(`URL saved to ${filePath}`);
}
});
};
// Función principal que maneja la lógica del programa
const main = async () => {
try {
const answers = await inquirer.prompt([
{
type: 'input',
name: 'URL',
message: 'Type in your URL:',
validate: (input) => {
try {
new URL(input); // Validar que la entrada es una URL válida
return true;
} catch (err) {
return 'Please enter a valid URL.';
}
},
},
]);
const url = answers.URL;
generateQRCode(url);
saveURLToFile(url);
} catch (error) {
if (error.isTtyError) {
console.error('Prompt couldn\'t be rendered in the current environment.');
} else {
console.error('An unexpected error occurred:', error);
}
}
};
// Ejecutar la función principal
main();