Top "Restify" questions

restify is a module for use with node.

How to upload file using restify

I'm trying to upload image file to Rest server(Confluence to be more specific) using Restify module but getting Assertion …

node.js restify
serving static files with restify (node.js)

I have the following code: app.js [...] server.get(/\/docs\/public\/?.*/, restify.serveStatic({ directory: './public' })); server.listen(1337, function() { console.…

node.js http restify
Node.js, restify and proper routing

I'm still wrapping my head around Node, but I have a very simple question. I see a lot of node …

model-view-controller node.js express restify
Node.js restify with socket.io

Is it possible to run socket.io & restify on the same port like express & socket.io? I did …

node.js rest websocket socket.io restify
What is the best way to implement a token-based authentication for restify.js?

I'm trying to build a RESTful api with restify.js, but I don't want to expose the api to everyone. …

node.js authentication restful-authentication restify
How to do parallel async multiple requests at once with Promises in Node

Array and loops through but I want to be able to run all of them in parallel instead as I …

javascript node.js promise restify bluebird
allowing options method with restify - Request header field Authorization is not allowed by Access-Control-Allow-Headers in preflight response

I'm writing a nodejs api application using restify framework. I'm enabling cors for cross domain access. restify is configured with …

node.js cors restify
Post jQuery JSON Object to NodeJs Restify

I want to know why it is so hard to post a simple JSON string in a /:parameter to restify. …

ajax json node.js restify
How can I get the client IP from a request object with Restify?

I'm having a difficult time finding how to access the IP address of the REST client from a route. server.…

node.js restify
How to make synchronous call with mongoose and nodejs

I'm designing a client/server synchronization feature. The client sends a bunch of changed events to server. The server will …

node.js mongoose synchronous restify