How can I create an angularJS app without using a seed?

172 Views Asked by At

From my understanding, this is probably the best way to make an angularJS app: clone this repo https://github.com/angular/angular-seed and then change what you need. However, how would you make an Angular app completely from scratch? I would like it to get it to the state where I can just add app.js/script.js and index.html and just start coding. Thanks.

1

There are 1 best solutions below

0
On

On http://angularjs.org the "Add Some Control" topic is probably the smallest working example of AngularJS. Start with that, and add more as you need it. You don't need Bower or NPM, but using it will help you add dependencies faster.

If this is for new development, you might want to check out Angular rather than AngularJS. AngularJS is kind of old school by now.