mirror of
https://github.com/nestjs/nest.git
synced 2026-02-21 23:11:44 +00:00
8 lines
154 B
JavaScript
8 lines
154 B
JavaScript
'use strict';
|
|
|
|
const fastify = require('fastify')();
|
|
fastify.get('/', async (req, reply) => reply.send('Hello world'));
|
|
fastify.listen({
|
|
port: 3000
|
|
});
|