我正在尝试使用bower install
安装凉亭后运行npm
。但问题是,当我运行sudo bower install
时,它会显示bower should be run without sudo
。如果运行bower install
,则表示permission denied cannot access file - ~/.config/configstore/bower-github.json
我尝试切换到root用户但没有运气。可以做些什么来解决这个问题?
答案 0 :(得分:1)
这是应该如何解决的问题。运行以下
const trim = (data, len) =>
data.replace(/(<(\w+)[^>]*?>)(\w.*?)<\/\2>/g,
match => match.replace(/(?=>).*(?=<\/)/,
match => match.length > len ? match.substr(0, len) : match
))
console.log(trim(`<div class="blog_contents"><h3 id="foo123">Facebook launches the application of a special communication companies</h3></div> `, 20))
那应该解决它!