I am totally new to stuff like node and gulp but i am developing Laravel project and want to use Exilir to compile assets. My question is where should be node installed? I followed all instructions from https://laravel.com/docs/5.3/elixir , installed node in default directory- c:/program files/nodejs. My local laravel project is in c:/xampp/htdocs/my_project. I tried to run gulp tasks and it probably succeeded because no error occured, only few notices like "Finished 'sass'..." etc, but no css file appeared in public\css in laravel project.
Should i install it in some place in Laravel project structure?
npm install --global gulp-cli
? – Nitish Kumarnpm install --global gulp-cli
and i figured out what was wrong. I changed directory in console to c:/xampp/htdocs/my_project and run npm install and now everything works. Directory node_modules has been created in project directory and now i am runinggulp
command from project directory and css are compiled. – julew