Nexstream / test_server.js
ejjays's picture
deploy: initial backend migration to Hugging Face
9e699db
Raw
History Blame Contribute Delete
219 Bytes
const express = require('express');
const app = express();
const PORT = 3000;
app.get('/', (req, res) => {
res.send('Hello');
});
app.listen(PORT, () => {
console.log(`Minimal server running on ${PORT}`);
});