So review everything using JavaScript at runtime, even CSS. But how can I handle fonts like font-awesome with npm and a browser.
There is npm pacakge here: https://www.npmjs.org/package/font-awesome But how can I link the fonts for my browser without using another tool like grunt or gulp.
// edit
If I want to use the fa class in my html now, is there any other way than pointing to node_modules/font-awesome/css/font-awesome.css in my html file?
I am looking for an automatic solution, because if I have several libraries, such as font-awesome, and they bring their own resources, such as fonts, images and other files, I don’t want to manually point each asset file to an html file.
With jade, I can just serve some files in public . And public contains all the assets that come through my remote dependencies, such as fonts, images, ... But how to copy or merge all files from a specific node_modules with public automatically?
fonts font-awesome package-managers browserify
timaschew
source share