overburn
overburn

Reputation: 1234

Using AngularJS with npm

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

Answers (1)

MoLow
MoLow

Reputation: 3084

yes. simply install angular using npm install angular --save

then for minifing etc' you could use webpack or similar solutions

Upvotes: 1

Related Questions