BackendStack21 / restana

Restana is a lightweight and fast Node.js framework for building RESTful APIs.
MIT License
467 stars 27 forks source link

How would i do a redirect? #55

Closed UniC7440 closed 5 years ago

UniC7440 commented 5 years ago

Read Title

jkyberneees commented 5 years ago

Hi @UniC7440, same as you would do it with vanilla HTTP in Node.js

...
res.statusCode = 302
res.setHeader('Location', 'https://github.com/jkyberneees/ana/issues/55')
res.end()

Regards