UNPKG

json-server

Version:

Get a full fake REST API with zero coding in less than 30 seconds

10 lines (9 loc) 215 B
"use strict"; const url = require('url'); module.exports = function getFullURL(req) { const root = url.format({ protocol: req.protocol, host: req.get('host') }); return `${root}${req.originalUrl}`; };