Question

I have a Structure for my application similar to below :

  • ApplicationA
    • a.js
  • ApplicationB
    • b.js
  • ApplicationC
    • c.js
  • public

i have some static file in public directory . how can application a.js that located in ApplicationA directory access to public directory.

Was it helpful?

Solution

var path = require("path")

var target = "../public/"

var resolved = path.relative(__dirname, target)

OTHER TIPS

Do you mean you want to go up a directory? If so use ../ to go up a directory from where you are so for instance if ApplicationA and public are in the same directory you could use:

../public/filename.file
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top