Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

250
Views
Set nodejs project directory based on the URL

I am currently serving angular1 application over node js app. I want to serve my angular1 app as well as angular2 app from same domain with this node server. I have following setting in my app.js of node js file:

var staticDir = nodeEnv == 'development' ? path.join(__dirname, '/home/sovf/ang1/') : '/data/project/angular/app';

My angular1 project directory is here: /home/sovf/ang1/ My angular2 project directory is here: /home/svof/ang2/

How can I configure the staticDir to use '/home/svof/ang2/' , when the url matches /ang2/*

I have tried enogh to look for resources and node configuration for this but could not find anything. Can any one please help here.

about 4 years ago · Santiago Trujillo
1 answers
Answer question

0

You can create a new instance of express.static that uses /home/svof/ang2 as root directory (where it should look for the static resources), and "mount" that instance on /ang2, so it will only match requests that start with that prefix:

app.use('/ang2', express.static(path.join(__dirname, '/home/svof/ang2')));
about 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!