Is it necessary to use require.js in a Ionic project?

Is it necessary to use require.js to manage js files in a Ionic project?

No, it’s not mandatory to use. It will be purely based on the project needs.

Thank’s for your answer.
But how do I manage multiple script tags, may be more than 20, in index.html?

You could use Gulp to concatenate them all before doing cordova run

Then you could just have one “app.js” in your index.html; you could even do some annotation and minification at that point, as well.

@mt__, can you please explain how to user gulp to concatenate, is there any tutorial or video for it?