jrudess / streamdvr

DVR for streaming entertainment
GNU General Public License v3.0
65 stars 16 forks source link

Update the required node version #157

Closed VS-X closed 2 years ago

VS-X commented 2 years ago

Node version 10 (per Readme) or 12 (per package.json) fail to find package fs/promises. 14 does work though.

Apparently it can be solved by doing this:

const fsp = require("fs").promises;

But I feel like bumping Node is a better option, since the support for LTS 12 is going to end in a few months.

jrudess commented 2 years ago

Thanks