2020. 3. 6. 20:27ㆍ카테고리 없음
Wago Io Check Update 2017
Npm outdated will identify packages that should be updated, and npm update can be used to update each package. NPM commands to update or fix vulnerabilities in some dependency manifest files.Use below command to check outdated or vulnerabilities in your node modules.npm audit.If any vulnerabilities found, use below command to fix all issues.npm audit fix.If it doesn't work for you then trynpm audit fix -f, this command will almost fix all vulnerabilities. Some dependencies or devDependencies are locked in package-lock.json file, so we use -f flag to force update them.If you don't want to use force audit fix then you can manually fix your dependencies versions by changing them in package-lock.json and package.json file.
Wago Io System
Then run `npm update && npm upgrade'.