mirror of
https://github.com/nestjs/nest.git
synced 2026-02-21 15:08:37 +00:00
8 lines
152 B
JavaScript
8 lines
152 B
JavaScript
'use strict';
|
|
|
|
const express = require('express');
|
|
const app = express();
|
|
|
|
app.get('/', async (req, res) => res.send('Hello world'));
|
|
app.listen(3000);
|