run `npm audit fix` to fix them, or `npm audit` for details
ximi:myBlog taoshilei$ npm install hexo-deployer-git@0.3.1 --save
npm install hexo-renderer-ejs@0.3.1 --save
+ hexo-deployer-git@0.3.1
added 17 packages from 14 contributors, removed 1 package, updated 1 package and audited 16889 packages in 19.733s
found 311 vulnerabilities (116 low, 141 moderate, 54 high)
run `npm audit fix` to fix them, or `npm audit` for details
ximi:myBlog taoshilei$ npm install hexo-renderer-ejs@0.3.1 --save
+ hexo-renderer-ejs@0.3.1
added 1 package from 2 contributors, updated 1 package and audited 16889 packages in 12.783s
found 311 vulnerabilities (116 low, 141 moderate, 54 high)
run `npm audit fix` to fix them, or `npm audit` for details
ximi:myBlog taoshilei$ npm install hexo-server@0.2.2 --save
+ hexo-server@0.2.2
added 15 packages from 7 contributors, updated 25 packages and audited 16891 packages in 18.402s
found 303 vulnerabilities (111 low, 139 moderate, 53 high)
run `npm audit fix` to fix them, or `npm audit` for details
ximi:myBlog taoshilei$
一、
问题:
node和hexo插件的版本带来的问题:在node8.x的版本中,fs.SyncWriteStream被弃用了。
解决:
更新如下插件:
npm install hexo-fs --save
npm install hexo-deployer-git@0.3.1 --save
npm install hexo-renderer-ejs@0.3.1 --save
npm install hexo-server@0.2.2 --save
npm audit fix
网友评论