andthereitgoes
andthereitgoes

Reputation: 889

Sharing code across multiple projects in AngularJS

Firstly, I am new to AngularJS. I was wondering what are the best practices around sharing common javascript code across multiple AngularJS projects?

What do the experienced AngularJS ninjas do out there?

I have heard of bower.

Upvotes: 0

Views: 677

Answers (1)

fusio
fusio

Reputation: 3675

By creating independent modules that you will then inject wherever you need to use those features. (you will have to include the .js files too)

Upvotes: 1

Related Questions