I have a simple Node.js express app that just serves some static files.
const express = require('express');
const cors = require('cors')
const app = express();
app.use(cors())
app.use(express.static('media'));
app.listen();
But the app keeps running multiple processes, more than 20. I am running 3 similar apps(and other apps) on a shared hosting service and each of these creates multiple processes. Sometimes these exceed the max process count of the hosting server, which prevents the other apps to work properly. What can I do to fix this issue?