koajs / examples

Example Koa apps
4.52k stars 744 forks source link

In file upload example, changed /tmp/ to tmp/ #40

Closed denizozger closed 10 years ago

denizozger commented 10 years ago

"tmp/" creates the file relative to index.js, which I believe prevents confusions just like the one here: http://stackoverflow.com/questions/25307888/file-upload-in-koajs

jonathanong commented 10 years ago

should actually be require('os').tmpdir()

denizozger commented 10 years ago

@jonathanong Good stuff I wasn't aware of that method - updated the code now & tested, it works.