Jean-Baptiste Richardet

Results 68 comments of Jean-Baptiste Richardet

For those looking for a workaround, adding an error listener to the ftp instance did the job: ```js const ftp = new Jsftp(opts); ftp.on('error', (err) => console.error(err)); ```

Hello @GautierT, You can't catch an event, they aren't run at the same time so your thrown error isn't caught. If you want to use try catch, you would have...

I think you have to [provide a `_read()` implementation](https://nodejs.org/dist/latest-v6.x/docs/api/stream.html#stream_implementing_a_readable_stream) to do this, but I agree, that'd be a good shorthand!

Good idea but most of the warnings are not trivial : * no-console, meaning we need to choose a logger strategy * no-alert, basically the same thing * class-method-use-this, meaning...

Hello @louisauve and welcome in this project! If @lexoyo said they're not needed, remove them 😃

I gave this one some thoughts and the main reason the login page is in a separate window is because we were lazy. We could totally set a redirectURI for...

Even better, we should check if a service use OAuth and use a different login strategy if it don't.

Yes, that would be here to change the `window.open` by a new modal popin

IMO, it's better to let Haxe handle the libs as it does in @clemos package. Haxe would be just a sandbox in the node_modules. This way, it doesn't break the...

Hello! I've been invoked here to talk about unifile. To be clear, unifile is a nodejs library that replicate the filesystem module but for cloud storage (GitHub, Dropbox, WebDAV, FTP...