-
Hi,
Can you please clarify what "Make sure to add this into accepts middleware" means exactly? I import it as:
```
jsonapi_formatter = require('restify-formatter-jsonapi');
```
So do you mean to …
-
If you are using Restify, the normal error have this schema example:
```
{
"code": "ResourceNotFound",
"message": "/v1/test does not exist"
}
```
Have **code** and **message**.
But in restify-v…
-
i wanted to set up pmx with restify (4.0.3) and i understood i need to include pmx before inclusion of any http related stuff happens. so since i want to make pmx optional (external config file) i hap…
-
related to this bug: https://github.com/saintedlama/restify-mongoose/issues/36
-
Hi,
I would like to expose most of the commands (color, roll, etc, ....) as web services in order to control my device across various channels (ifttt, cortana, node-red, etc...)
Therefore, I have ins…
-
I have generated the project and wanted to start the app. Here is the error I am getting.
```
$ npm start
> node-restify-mongodb@0.0.0 start C:\hapi\node-restify-mongodb
> node app.js | ./nod…
-
When I try to start the server, I get the following error:
```
util.js:280
throw new ERR_INVALID_ARG_TYPE('superCtor', 'Function', superCtor);
^
TypeError [ERR_INVALID_ARG_TYPE]: The "s…
-
When I use with only restify
I use:
```
server.post('/upload', uploads.single('foto'), async (req, res, next)=>{
try {
res.send( saveObj )
} catch (error)…
-
- [ x ] Searched both open and closed issues for duplicates of this issue
- [ x ] Title adequately and _concisely_ reflects the feature or the bug
**Restify Version**: 6.4.0
**Node.js Version**: …
-
I am getting `ERR_STREAM_WRITE_AFTER_END` when requesting a static file (through serveStaticFiles) with gzip compression.
e.g:
```
Error [ERR_STREAM_WRITE_AFTER_END]: write after end …