Questions tagged [flow-js]

flow.js is a JavaScript library providing multiple simultaneous, stable, fault-tolerant and resumable/restartable file uploads via the HTML5 File API.

Flow is a static type checker for your JavaScript code. It does a lot of work to make you more productive. Making you code faster, smarter, more confidently, and to a bigger scale. https://flow.org/en/docs/getting-started/

68 questions
1
vote
0 answers

Using Sailsjs Skipper file uploading with Flowjs

I'm trying to use skipper and flowjs with ng-flow together for big file uploading. Based on sample for Nodejs located in flowjs repository, I've created my sails controller and service to handle file uploads. When I uploading a small file it's works…
Bohdanko
  • 141
  • 7
1
vote
0 answers

filesAdded and filesSubmitted events

I'm using the flow.js library for file uploads in a project. I'm confused about the parameter files received by filesAdded and filesSubmitted events. Would the parameter always contain files corresponding to a particular directory on disk (in case…
Bharat Khatri
  • 1,367
  • 2
  • 16
  • 27
1
vote
0 answers

ng-flow with Python in the backend

So it's been a few days and I have been trying to save images to a folder in my web project. I am using ng-flow, and I can reach my python server with a POST request This is what I get in my request.form: ImmutableMultiDict([('flowFilename',…
Larissa Leite
  • 1,358
  • 3
  • 21
  • 36
1
vote
2 answers

Nginx post request pending with ng-flow and Express (Node.js)

I've encounterd no problems while developing with ng-flow, NodeJS and Express, although I'm not able to configure Nginx properly as a reverse proxy in order to make it run smoothly with ng-flow and Express. Here you'll find a request example that is…
Luca Anceschi
  • 2,257
  • 3
  • 19
  • 24
1
vote
1 answer

Where is the file data for a flow.js upload?

I'm building an uploader into my web page and trying to use flow.js as my uploading tool. On the server-side I have a WCF service with a generic handler as the target for my uploader. I do get the uploader to send a request to the handler, and…
Mokgra
  • 133
  • 2
  • 14
1
vote
1 answer

ng-flow - no destination directory option

I am using ng-flow in my application and it works pretty well. Currently, the destination directory for the files being uploaded is set in my web.config and used within my webapi controller method. What I want to do is allow the user to specify the…
Declan McNulty
  • 3,194
  • 6
  • 35
  • 54
1
vote
0 answers

Passing a flag indicating all the chunks in a file are complete in ng-flow

I am new to flow and I am trying to figure out if there is way we can send a flag to indicate all the chunks in a given file are complete. This is my html
user2800803
  • 65
  • 1
  • 9
1
vote
1 answer

Files uploaded using ng-flow to upload to gae blobstore always named 'blob'

I trying to create a page for uploading images to the Google App Engine blobstore. I'm using angularjs and ng-flow to realise this. The uploading part seems to work fine except all blobs are stored as 'application/octet-stream' and named 'blob'. How…
DefLog
  • 1,009
  • 7
  • 13
1
vote
1 answer

Flowjs file upload - AngularJS and Node

I am using Flowjs, and its ng-flow directive to upload file with NodeJS as backend. When i try to upload file, only file in tem folder is uploaded, but it's note any type of file like JPG or PNG. (flow-135601-juicy_gustinektar02l_10185jpg.1). Here…
Sysrq147
  • 1,359
  • 4
  • 27
  • 49
0
votes
2 answers

Flow [signature-verification-failure] for curried async function

I have received the following error: type Submit = { form: any, handleSubmit: FunctionType, ... } Flow-IDE Submit: type Submit = { form: any, handleSubmit: FunctionType < any, any > , ... } Cannot build a typed…
Brandon
  • 1,447
  • 2
  • 21
  • 41
0
votes
1 answer

Change passable prop to a function to simplify them

I have this code that contain props const Dropdown = (props: Props): React.Node => { const { name, isDisable, onChange, placeholder, value, data } = props; return (