4837 Total CVEs
26 Years
GitHub
README.md
Rendering markdown...
POC / server.js JS
const fastify = require('fastify')()
const port = process.env.PORT || 5000

fastify.listen(port, (err) => {
    if (err) throw err
    console.log(`server listening on ${fastify.server.address().port}`)
})

require('./src/routes')(fastify)