正在运行' bower install'在mac上

时间:2017-02-11 06:34:58

标签: node.js macos bower sudo bower-install

我正在尝试使用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用户但没有运气。可以做些什么来解决这个问题?

1 个答案:

答案 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))

那应该解决它!