• Jobs
  • About Us
  • professionals
    • Home
    • Jobs
    • Courses and challenges
  • business
    • Home
    • Post vacancy
    • Our process
    • Pricing
    • Assessments
    • Payroll
    • Blog
    • Sales
    • Salary Calculator

0

188
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 3 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 3 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 Our process Sales
Legal
Terms and conditions Privacy policy
© 2025 PeakU Inc. All Rights Reserved.

Andres GPT

Recommend me some offers
I have an error