How to integrate node packages in CodeIgniter 4?
I build a web app with CodeIgniter 4 and I want to add some libraries. I'm used to use npm with my JavaScript Web Apps and I'm wondering what is best practice to use npm with CodeIgniter 4.
npm install animate.css --save
) how do I reference the package in my app? Do I use <link href="<?=base_url();?>/assets/node_modules/animate.css/animate.min.css" rel="stylesheet" />
copy node files in public/js then call it in footer
call it here