trying to raise the server with nodemon, I get this error

0
$ npm run nodemon


[email protected] nodemon /home/alforhanz/MisProyectos/tesis_bdup
nodemon ./bin/www
[nodemon] 1.17.1
[nodemon] to restart at any time, enter 'rs'
[nodemon] watching: *.*
[nodemon] starting 'node ./bin/www'
sequelize deprecated String based operators are now deprecated. Please use Symbol based operators for better security, read more at http://docs.sequelizejs.com/manual/tutorial/querying.html#operators node_modules/sequelize/lib/sequelize.js:242:13
Port 3001 is already in use
[nodemon] app crashed - waiting for file changes before starting...
    
asked by Jose Felix 11.03.2018 в 18:11
source

1 answer

0

I had the same problem, checking the documentation I only found the $ npx nodemon command and the npm start, the first one worked for me.

for more information visit the nodemon commands link

I hope you find it useful

    
answered by 06.09.2018 в 15:32