If I have an nodejs express application with folowing folder structure:
-src
- client
- public
- css
- js
- ...
- views
- server
- server.js
- How can I serve the static files in the public folder from the server.js file, since it is located
above
the index.js root location? - How should the:
app.use(express.static();
look like?
----UPDATE---
SOLVED this by using: app.use(express.static(path.join(__dirname, '/../client/public')));
If I have an nodejs express application with folowing folder structure:
-src
- client
- public
- css
- js
- ...
- views
- server
- server.js
- How can I serve the static files in the public folder from the server.js file, since it is located
above
the index.js root location? - How should the:
app.use(express.static();
look like?
----UPDATE---
SOLVED this by using: app.use(express.static(path.join(__dirname, '/../client/public')));
Share Improve this question edited Apr 26, 2018 at 15:01 dvg asked Apr 24, 2018 at 18:26 dvgdvg 1812 silver badges10 bronze badges 1-
path.resolve(__dirname, '../client/public/')
might also work . e.g. withres.sendFile
instead ofexpress.static
. – Alex Glukhovtsev Commented Apr 17, 2019 at 12:24
3 Answers
Reset to default 9Actually solved my problem by using:
app.use(express.static(path.join(__dirname, '/../client/public')));
You can use path.join()
app.use(express.static(path.join(__dirname,'public')));
just do this, (as per your directory structure)
app.use(express.static(path.join(__dirname, 'src/client/public')));
// http://localhost:3000/hello.html
or
app.use('/static', express.static(path.join(__dirname, 'src/client/public')))
// http://localhost:3000/static/hello.html
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743641095a4482973.html
评论列表(0条)