I'm trying to use maildev in a springboot application. I'm using intellij program.
using the terminal, I install the maildev like this:
C:\Users\msys\Desktop\spring_start>npm install -g maildev
"spring_start" is my project name
after installing it, the following appear in the terminal
npm WARN deprecated [email protected]: The package has been renamed to
open
npm WARN deprecated [email protected]: All versions below 4.0.1 of Nodemailer are deprecated. See https://nodemailer.com/status/ npm WARN deprecated [email protected]: Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3 .2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797) C:\Users\msys\AppData\Roaming\npm\maildev -> C:\Users\msys\AppData\Roaming\npm\node_modules\maildev\bin\maildev [email protected] updated 1 package in 6.095s
but when I'm trying to run "maildev" command like this:
C:\Users\msys\Desktop\spring_start>maildev
the following error message appears:
'maildev' is not recognized as an internal or external command, operable program or batch file.
how to solve it?