UNPKG

fastify

Version:

Fast and low overhead web framework, for Node.js

13 lines (9 loc) 225 B
'use strict' var express = require('express') var app = express() app.get('/', function (req, res) { res.send({ hello: 'world' }) }) app.listen(3000, function () { console.log('Example app listening on port 3000!') })