Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Video-Downloader/api/src/index.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
32 lines (23 sloc)
776 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dotenv/config'; | |
import express from 'express'; | |
import cluster from 'node:cluster'; | |
import path from 'path'; | |
import { fileURLToPath } from 'url'; | |
import { env, isCluster } from './config.js'; | |
import { Red } from './misc/console-text.js'; | |
import { initCluster } from './misc/cluster.js'; | |
const app = express(); | |
const __filename = fileURLToPath(import.meta.url); | |
const __dirname = path.dirname(__filename).slice(0, -4); | |
app.disable('x-powered-by'); | |
if (env.apiURL) { | |
const { runAPI } = await import('./core/api.js'); | |
if (isCluster) { | |
await initCluster(); | |
} | |
runAPI(express, app, __dirname, cluster.isPrimary); | |
} else { | |
console.log( | |
Red("API_URL env variable is missing, Team Hydra Video Downloader api can't start."), | |
); | |
} |