Skip to content

Eomm/fastify-url-data

 
 

Repository files navigation

fastify-url-data

CI NPM version Known Vulnerabilities js-standard-style

A plugin for Fastify that adds support for getting raw URL information from the request.

Example

const fastify = require('fastify')()

fastify.register(require('fastify-url-data'))

fastify.get('/foo', (req, reply) => {
  const urlData = req.urlData()
  req.log.info(urlData.path) // '/foo'
  req.log.info(urlData.query) // 'a=b&c=d'
  req.log.info(urlData.host) // '127.0.0.1'
  req.log.info(urlData.port) // 8080

  // if you just need single data:
  req.log.info(req.urlData('path')) // '/foo'

  reply.send({hello: 'world'})
})

// GET: 'http://127.0.0.1:8080/foo?a=b&c=d

License

Licensed under MIT

About

A plugin to provide access to the raw URL components

Resources

License

Code of conduct

Contributing

Stars

0 stars

Watchers

0 watching

Forks

Packages

 
 
 

Contributors

Languages

  • JavaScript 82.4%
  • TypeScript 17.6%