javascript - How to make express serve static files from another upper directory? - Stack Overflow

If I have an nodejs express application with folowing folder structure:-src- client- public- css- js- .

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. with res.sendFile instead of express.static . – Alex Glukhovtsev Commented Apr 17, 2019 at 12:24
Add a ment  | 

3 Answers 3

Reset to default 9

Actually 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条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信