intern-Assignment/Node-Assignments/URLShortener/index.js

11 lines
159 B
JavaScript
Raw Permalink Normal View History

2025-01-31 09:50:39 +00:00
const express = require('express');
const app = express();
const PORT = 6000;
app.listen(6000, () => {
console.log(`Server is running on ${PORT}`);
})