-
Hi,
A while ago I developed a web app to replace an old cgi-bin script from the nineties, which means that it had to assume that POST requests with a `Content-Type` of `application/x-www-urlencoded` …
-
Hi there,
AWS has recently announce a new feature: https://aws.amazon.com/blogs/aws/announcing-aws-lambda-function-urls-built-in-https-endpoints-for-single-function-microservices/
And, Serverless …
-
hh:mm:ss, ip, consulta, pagina
-
In stead of relying on the client to intercept calls and use fixtures (#37), point all calls to a secondary server that can do the same thing. The server and its responses can be used as a model for p…
-
If this library is added to the express router in front of any endpoints it will reject any `content-type: application/json` requests larger than 100kb because of body-parser default limit. One fix wo…
-
Hey there, just flagging this for you that Express 4 deprecated app.del in favor of app.delete.
Just gives me an annoying warning message, otherwise still works.
```
express: app.del: Use app.delete …
-
I have spent several hours debugging a HEAD route and eventually found that I had fallen foul of the note here:
https://expressjs.com/en/4x/api.html#router.METHOD
A warning may not be the right ap…
-
Hello everyone.
This is a discussion repository for modules that belong under the undirectional umbrella
I'm going to migrate all the re-usable modules from mercury into here.
Any mercury specific …
-
例如下面这段代码:
app.all('/reg',routes.state.checkNotLogin);
app.get('/reg', routes.home.reg);
app.post('/reg', routes.home.doReg);
是否采用router API说明文档(http://expressjs.com/4x/api.html#router)的方式进行封装一下,变成下面…
-