mafintosh/peerflix

os.tmpDir() is deprecated

deepakrokz opened this issue · 2 comments

(node:15336) [DEP0022] DeprecationWarning: os.tmpDir() is deprecated. Use os.tmpdir() instead.

Please update..

.\node_modules\peerflix\node_modules\torrent-stream\index.js

Change line 36
var TMP = fs.existsSync('/tmp') ? '/tmp' : os.tmpDir()
to
var TMP = fs.existsSync('/tmp') ? '/tmp' : os.tmpdir()

I also noticed that it won't build in Windows because it's looking for /tmp