实际上很简单。只需使用express的静态函数来提供文件。
var app = express();
app.use(express.static('Files'));//assuming you have the files within the folder Files
现在,您可以通过使用服务器/文件名路径的角度访问您的文件。例如,如果您的nodejs api托管在http://localhost:4200
上。使用以下角度访问角色:
http://localhost:4200/mynewFile1.html