All Questions
1 question
0
votes
1
answer
2k
views
Correct way to serve file that's in node_modules
Say I have this structure:
project/
node_modules/
xxx/
asset.js
index.html
app.js
and in app.js I have:
const express = require('express');
const app = express();
...