Is there something similar to the php composer for Angularjs?

0

In Laravel we have this command to create all the file structures:

composer create-project --prefer-dist laravel/laravel blog
  • Is there something similar for Angularjs ?
  • Is there a tool that automates creation?
  • How is the file structure built into Angularjs ?
asked by anonymous 04.12.2016 / 21:38

1 answer

0

Just like Composer as far as I know there is not. But if you want to have a base project of AngularJS you can use "angularjs-seed" by installing through NPM.

npm install angularjs-seed

Or you can clone directly from the GitHub repository. link

Because the folder structure depends on the needs of the application and the tastes of the developer, an idea to generate a custom default structure (a kind of template like in Composer) would be to create a repository in GitHub and publish its structure there.

    
05.12.2016 / 12:56