libsass bindings not found when using node-sass in nodejs

后端 未结 12 1381
名媛妹妹
名媛妹妹 2020-12-02 05:03

I want to use the node-sass module in my node.js v0.12 application to benefit from the performance of libsass.
I executed np

12条回答
  •  甜味超标
    2020-12-02 05:41

    This is the only solution that worked for me,

    sudo npm install -g n
    sudo n 0.12.7
    npm install node-sass@2
    sudo npm -g install node-gyp@3
    npm rebuild node-sass
    

提交回复
热议问题