index.js 267 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10
const express = require('express');
const app = express();
const port = 3000;

app.get('/', (req,res) => res.send('Hello world')  );
app.get('/about', (req,res) => res.send("I'm paul.")  );

app.listen(port, () => {
    console.log('Yeah yeah server started...');
})