My very good friend of mine – let´s call him Tomas Marny – wrote very nice article about Node.js + Yeoman on PC-BSD. I´m very happy to have a chance to publish it:
- Install Firefox or other web browser by AppCafe
- Install Node.js by AppCafe
- Install Git by AppCafe
- Install Ruby by AppCafe
- Install ruby-gem for Compass by Console command
- Get ports
sudo portsnap fetch - Extract ports
sudo portsnap extract - Install gem
-
cd /usr/ports/devel/ruby-gems/ && sudo make install clean
- Install Compass by Console command
-
sudo gem update –system sudo gem install compass
- Install NPM by Console command
-
sudo pkg_add -r npm
- Install Yeoman by Console command
During installation you can see warning, ignore those warnings
-
sudo npm install -g yo sudo npm install -g generator-webapp
That is all 😀
Small test at the end:
-
sudo npm install -g generator-angular mkdir yoTest yo angular grunt test grunt server
-TM-