Node.js as a custom (streaming) upload handler for Django

Posted by Gijs on Stack Overflow See other posts from Stack Overflow or by Gijs
Published on 2010-03-08T17:31:32Z Indexed on 2010/03/08 17:36 UTC
Read the original article Hit count: 571

Filed under:
|
|
|
|

I want to build an upload-centric app using Django. One way to do this is with nginx's upload module (nonblocking) but it has its problems. Node.js is supposed to be a good candidate for this type of application. But how can I make node.js act as an upload_handler() for Django (http://docs.djangoproject.com/en/1.1/topics/http/file-uploads/#modifying-upload-handlers-on-the-fly) I'm not sure where to look for examples?

© Stack Overflow or respective owner

Related posts about django

Related posts about node.js