[node.js] générer un fichier non vide
Résolu/Fermé
Utilisateur anonyme
-
Modifié le 21 oct. 2018 à 12:03
Jithel Messages postés 843 Date d'inscription mercredi 20 juin 2018 Statut Membre Dernière intervention 31 août 2021 - 24 oct. 2018 à 11:44
Jithel Messages postés 843 Date d'inscription mercredi 20 juin 2018 Statut Membre Dernière intervention 31 août 2021 - 24 oct. 2018 à 11:44
A voir également:
- [node.js] générer un fichier non vide
- Fichier rar - Guide
- Comment ouvrir un fichier epub ? - Guide
- Comment réduire la taille d'un fichier - Guide
- Fichier host - Guide
- Ouvrir un fichier .bin - Guide
1 réponse
Jithel
Messages postés
843
Date d'inscription
mercredi 20 juin 2018
Statut
Membre
Dernière intervention
31 août 2021
171
24 oct. 2018 à 11:44
24 oct. 2018 à 11:44
Définir la fonction whatismyip() :
Code non testé.
Source : https://stackoverflow.com/questions/3653065/get-local-ip-address-in-node-js
var whatismyip = function(){ var os = require('os'); var ifaces = os.networkInterfaces(); var IP = "127.0.0.1"; // localhost by default Object.keys(ifaces).forEach(function (ifname) { ifaces[ifname].forEach(function (iface) { if ('IPv4' !== iface.family || iface.internal !== false) { // skip over internal (i.e. 127.0.0.1) and non-ipv4 addresses return; } IP = iface.address; return; }); return; }); }
Code non testé.
Source : https://stackoverflow.com/questions/3653065/get-local-ip-address-in-node-js