os.tmpDir() is deprecated
deepakrokz opened this issue · 2 comments
deepakrokz commented
(node:15336) [DEP0022] DeprecationWarning: os.tmpDir() is deprecated. Use os.tmpdir() instead.
Please update..
ImWolfUK commented
.\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()
asheroto commented
I also noticed that it won't build in Windows because it's looking for /tmp