forked from JJUNGTABLE/Back
15 lines
257 B
JavaScript
Executable File
15 lines
257 B
JavaScript
Executable File
// index.js
|
|
|
|
import express from 'express';
|
|
|
|
const app = express();
|
|
const port = 7002;
|
|
|
|
app.get('/', (req, res) => {
|
|
res.send('Hello World!123123123123');
|
|
|
|
});
|
|
|
|
app.listen(port, () => {
|
|
console.log(`Server is running at http://localhost:${port}`);
|
|
}); |