make static directory nodejs and access images from there code example
Example 1: how to use static file node js
app.use(express.static('public'))
app.use(express.static('files'))
Example 2: how to use static file node js
app.use('/static', express.static(path.join(__dirname, 'public')))