Company logo
  • Jobs
  • Bootcamp
  • About Us
  • For professionals
    • Home
    • Jobs
    • Courses
    • Questions
    • Teachers
    • Bootcamp
  • For business
    • Home
    • Our process
    • Plans
    • Assessments
    • Payroll
    • Blog
    • Sales
    • Calculator

0

108
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.

8 months 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')));
8 months ago · Santiago Trujillo Report
Answer question
Find remote jobs