Rom
Rom
@DominikSerafin is there anything else you'd want?
@DominikSerafin I guess you're not interested anymore (that's fine). I'm deprioritizing this. If someone is reading and interested in this, let me know and I'll implement it.
@DominikSerafin 👍 I'll start implementing file uploads in about a week. Stream mode: ~~~js server.submitForm.uploadToStream = [undefined, true, {someAnotherFile: true}]; server.submitForm = async function(someString, someFile, {someAnotherFile}) { // `someFile.stream` is...
Started working on this. The interface will be slightly different. (With several advantages, mostly around TypeScript integration, but also extra flexibility of being able to decide file upload strategy at...
Pardon me the delay; I've been working on https://github.com/brillout/vite-plugin-ssr which is fairly high prio since I'm aimaing at shipping the first SSR tool built on top of Vite. (In case...
> integrate file uploading into Express seems not good in terms of scale and performant Can you elaborate? > 90% of file uploading requirements are to integrate with the 3rd...
@xgenvn 👍 I will take this in consideration. Also, note that Wildcard is only a middleware: you don't have to use Wildcard for everything, and you can use your custom...
@Johnson444 We can implement this together, if that's something you'd be interested in doing. I've cleaned up the source code, it's now all TypeScript, and test coverage is close to...
The plan is to actually integrate this with an interface that could eventually become a public API. For now the interface would be private but you're right maybe it should...
> I think it's nicer to assign the those functions to the context than to the server object. Interesting. So basically you prefer to define server endpoints dynamically on each...