node.jsのインストール方法

  • 2019年7月2日
  • 2020年3月12日
  • Nuxt

Macにnode.jsが入っていなかったので入れてみました。

目的はNuxt.jsを触るため。Vue.jsは使っていたけど、Nuxtが出てきてから全く触っていなかったので。

Homebrew インストール

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

Nodebrewインストール

brew install nodebrew

環境パス

echo 'export PATH=$PATH:$HOME/.nodebrew/current/bin' >> ~/.bash_profile

無かったら作る

mkdir -p ~/.nodebrew/src

インストール

nodebrew install-binary stable
 

インストールしたバージョンの確認

nodebrew list
v12.5.0

使う

nodebrew use v12.5.0

また、パス通す

echo 'export PATH=$PATH:/Users/jsuzuki/.nodebrew/current/bin' >> ~/.bashrc

 bash_profileに追記

if [ -f ~/.bashrc ]; then
    . ~/.bashrc
fi

反映

source ~/.bash_profile

Fatal error: Uncaught Error: Call to undefined function set_post_views() in /home/jszk/desnote.com/public_html/wpjs/wp-content/themes/the-thor-child/single.php:658 Stack trace: #0 /home/jszk/desnote.com/public_html/wpjs/wp-includes/template-loader.php(78): include() #1 /home/jszk/desnote.com/public_html/wpjs/wp-blog-header.php(19): require_once('/home/jszk/desn...') #2 /home/jszk/desnote.com/public_html/index.php(17): require('/home/jszk/desn...') #3 {main} thrown in /home/jszk/desnote.com/public_html/wpjs/wp-content/themes/the-thor-child/single.php on line 658