Reputation: 1234
Any idea how I can autoload, concatenate and minify resources from node_modules when using npm as a package manager for a client side app created with angular?
Upvotes: 0
Views: 57
Reputation: 3084
yes.
simply install angular using npm install angular --save
then for minifing etc' you could use webpack or similar solutions
Upvotes: 1