Marc Andrews
Marc Andrews
I fixed this by renaming my **private key** to `id_rsa` and moving it to the `~/.ssh` folder.
I too cannot get the `option.base` to work as expected. gulpfile.js: ``` javascript gulp.task('default', function() { return gulp.src('src/client/*.html', { base: 'src' }) .pipe(useref({ base: 'client' })) .pipe(gulpif('*.js', ngAnnotate())) .pipe(gulpif('*.js', uglify()))...
`subGifter` needs to be removed from https://github.com/twitch-js/twitch-js/blob/476ff0ab0e5841836b49abb76bd27f90e3cb556a/src/twitch.ts#L275-L286
Continuing off from https://github.com/twitch-apis/twitch-js/issues/116#issuecomment-434065099 ... @dbkynd what library do you use for pubsub? I will reach out to the author and see if they want to join forces.
Hmm, I am a bit surprised. There is minimal processing on tags, so they should be available in [`.tags`](https://twitch-devs.github.io/twitch-js/docs/reference/mixin#basemessage). Any tags beginning with `msg-param` should available in [`.parameters`](https://twitch-devs.github.io/twitch-js/docs/reference/mixin#usernoticemessage). The only...
Let's keep this open. We still should ensure that the types are correct in `.parameters`.
We can add some timings to the trace output here: https://github.com/twitch-js/twitch-js/blob/476ff0ab0e5841836b49abb76bd27f90e3cb556a/src/Client/client.ts#L96 ... but since `Chat.send` is a promise, you can also wrap it with your own code to track how...
Seems you're using [node-ftp](https://github.com/mscdex/node-ftp), which supports FTPS. You could try [node-ftps](https://github.com/Atinux/node-ftps), which supports FTP, FTPS and SFTP.
Can jsftp do SFTP too? If it can, you should definitely use that. I can help convert some functions in SynapseDomain.js from node-ftp to jsftp.
I'd really like FTP**S** support. I was really hoping there was a module that would give you all three FTP, SFTP and FTPS, and thus decrease the amount functions required...