tst / server.js
dog's picture
Upload . with huggingface_hub
efead7f
raw
history blame
396 Bytes
'use strict';
const express = require('express');
// Constants
const PORT = 7860;
const HOST = '0.0.0.0';
// App
const app = express();
app.get('/', (req, res) => {
res.send('Hello World from ExpressJS! This example is from the NodeJS Docs: https://nodejs.org/en/docs/guides/nodejs-docker-webapp/');
});
app.listen(PORT, HOST, () => {
console.log(`Running on http://${HOST}:${PORT}`);
});