I am using meteor 1.4.1.1 with NPM support. I installed the npm "font-awesome" package and getting the error on the console "Uncaught Error: Cannot find module 'fontawesome'". I installed it with
meteor npm install --save font-awesome
The package seems to be installed correctly, folder inside of node_modules is created.
I imported the package in client/main.js with
import fontawesome from 'font-awesome';
Sadly no icons are showing up, when i console.log(fontawesome);
i get the above mentioned error back.
Thanks in advance, mario