J'utilise node + express et je me demande simplement comment importer n'importe quel fichier sous forme de chaîne. Disons que j'ai un fichier txt, tout ce que je veux, c'est le charger dans une variable en tant que telle.
var string = require("words.txt");
je suis contre
modules.exports = function(){
var string = "whatever";
return string;
}
const { string } = require('words.js');
wherewords.js
containsmodule.exports = { string: 'whatever' };