Will Webberley
Will Webberley
Hi there, When the `S3` object is used to `getSignedUrl`, the result is a URL that the client can use to make the `PUT` request directly to S3. The URL...
From the error you mention it sounds as if the `Bucket`parameter is not being set properly when configuring the S3 parameters (see [this line](https://github.com/flyingsparx/NodeDirectUploader/blob/master/app.js#L46)). Try hard-coding the bucket name in...
Hi @ChrisGrigg, I just tested this on Firefox 54.0.1 on MacOS, and the upload was successful. However, the console does report a warning (though not an error) that the GET...
Hi, the code in this repository is written in plain ES6 JavaScript. The back-end is in Node, as you ask, and the front-end code could be easily refactored to fit...
Unfortunately there is no Angular 2 example in this repository. As I said, the code here is mainly just to illustrate the process rather than to apply it to any...
Hi @iSuslov , Looking at Twitter's [documentation](https://github.com/twitter/typeahead.js/blob/master/doc/jquery_typeahead.md#jquerytypeaheaddestroy), you should be able to destroy it using the JQuery selector: ``` javascript $('.typeahead').typeahead('destroy'); ```