Skip to content
Snippets Groups Projects
app.js 276 B
Newer Older
  • Learn to ignore specific revisions
  • LAMRINI Houda's avatar
    LAMRINI Houda committed
    const express = require('express');
    const app = express();
    const port = 8000;
    
    app.get('/', (req, res) => {
        res.send('This is my Node application for CICD Demo!');
    });
    
    app.listen(port, () => {
        console.log(`Application is listening at http://localhost:${port}`);
    });