Url path in ExpressJS + NodeJS

61 Views Asked by At

I have build an application with NodeJs + ExpressJs. I have file jquery in folder js of public, ex:

http://192.168.2.129:7878/javascripts/jquery.min.js

But how can I config setting Express to get this file jquery when i get this url

http://192.168.2.129:7878/1111/javascripts/jquery.min.js
1

There are 1 best solutions below

0
On

From documentation, to add relative 'virtual' path you write following code:

app.use('/1111', express.static('public'));