James Sumners

Results 658 comments of James Sumners

Totally agree. Our docs are quite a mess.

I think we have only just gotten started with this. The addition of guides support and the reorganization of docs laid the groundwork for being able to add the guides...

Are you saying you think there is enough time in v3 for the deprecation notices? That's not the approach we took with the `.listen` configuration.

> I had to switch back to using expressjs for a project because fastify doesn't support adding routes for arbitrary HTTP methods. The thing I was working on was a...

> @mcollina Sure, how should I start working? See https://gist.github.com/jsumners/461ef7a64545108635cc437fde112721

Update: this might be merged within the next two days from the time of this comment. https://github.com/nodejs/node/pull/15752#issuecomment-361794346

Right. I was just providing an update to keep people informed. This is in no way a blocker for v1.0.0.

![image](https://user-images.githubusercontent.com/321201/57956673-cde9fe00-78c7-11e9-8917-a4927d2bf5c6.png) I implemented annotations in [laic](https://github.com/jsumners/laic#annotations). It was dumb; that library was dumb. Annotations introduce mystery and magic into the code. I would rather they stay in Java and C#...

```js function (request, reply) { reply.send('foo') } // is different than async function (request, reply) { return reply.send('foo') } ```