node-rem icon indicating copy to clipboard operation
node-rem copied to clipboard

Not run with Node 15

Open nguyenhuutinh opened this issue 4 years ago • 1 comments

it stuck here.

yarn run v1.22.4
$ npx nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec ts-node --files src/index.ts
[nodemon] 2.0.7
[nodemon] to restart at any time, enter `rs`
[nodemon] watching path(s): src/config/express.ts
[nodemon] watching extensions: ts,json
[nodemon] starting `ts-node src/config/mongoose.ts src/config/passport.ts src/config/vars.ts --files src/index.ts`
[nodemon] clean exit - waiting for changes before restart

switch back to 12 works well

nguyenhuutinh avatar Apr 02 '21 05:04 nguyenhuutinh

Hi, it works for me with Node 15.5.0. Did you have MongoDB started first?

$ node -v
v15.5.0

$ yarn dev
yarn run v1.22.5
$ npx nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec ts-node --files src/index.ts
[nodemon] 2.0.7
[nodemon] to restart at any time, enter `rs`
[nodemon] watching path(s): src\**\*.ts
[nodemon] watching extensions: ts,json
[nodemon] starting `ts-node --files src/index.ts`
--- �🌟  Started (development) --- http://localhost:3009

ngduc avatar Apr 29 '21 06:04 ngduc