Christophe Porteneuve
Christophe Porteneuve
@gchauvet @z0mt3c I've been using Restify as the core for our Node.js training classes and have been bothered with the lack of clean, up-to-date, no-vuln-bearing request validator solution ever since....
Yes, I was thinking the same whilst reviewing the FR translation for that page. If the team is interested, I'm willing to send a PR. I think just betting the...
Hey @roelof1967, There seems to be some misconception here. The code you pasted in is **not** the official solution. The official solution takes numbers from `process.argv[2]`, as described in the...
Hey @bendtherules, Cool article! I'm not sure whether this group is looking for dive-into-implementation articles so much as API-surface articles, but I'm a sucker for knowing the internals of things,...
Hey there! I fall prey to the same issue. I've got an `Upload` model defined like this: ```js Upload.init(UploadSchema, { /* … */ }).afterDestroy(removeFile) ``` Calling a `.destroy()` on upload...
Yes, not only that but even the `individualHooks` option in bulk (model-level) operations seems not to work. Doing a manual `Upload.destroy({ where: …, individualHooks: true })` doesn't trigger my `afterDestroy`...
Hey @ephys! Thanks for looking into this! As for a change proposal, personally I think I'd just favor `hooks: true` and `individualHooks: true` working as advertised... I'll try and create...
OK so **my bad**, really. The `hooks: true` option on relationships **does work** (and I'm guessing `individualHooks` works as well). I "just" had let a discrepancy creep in on my...
I get your drift. I'm thinking, perhaps a dedicated workshop then :smile: There are a number of great safeguards in Strict Mode that JSHint won't pick up, which is why...
I wondered about this, but because strict mode shouldn't be global client-wide, and `javascripting` is not Node-specific, hence not necessarily in-module, I'm a bit wary of adding it there, plus...