Sto usando node + express e mi chiedo come posso importare qualsiasi file come stringa. Diciamo che ho un file txt tutto quello che voglio è caricarlo in una variabile in quanto tale.
var string = require("words.txt");
io sono contro
modules.exports = function(){
var string = "whatever";
return string;
}
const { string } = require('words.js');
dovewords.js
contienemodule.exports = { string: 'whatever' };