- Fork and Clone Repository.
- Open terminal and
cdto path of the repo. - Install any node modules:
npm install - Install gulp:
npm install gulp -g
npm run dev
npm run test
npm run build
This app comes with some helpful and generators for creating a new component/service. You simply have to hook them up to your components.js and services.js file.
gulp component --name <NAME_OF_YOUR_COMPONENT>
gulp common_component --name <NAME_OF_YOUR_COMPONENT>
gulp service --name <NAME_OF_YOUR_SERVICE>
##Project Structure
/app
/assets
/images
/foo.png
/common
/button
/button.js
/button.component.js
/button.controller.js
/button.html
/button.scss
/button.test.js
/navbar/
/components.js
/components
/about
/about.js
/about.component.js
/about.controller.js
/about.html
/about.scss
/about.test.js
/home/
/components.js
/services
/users
/users.js
/users.service.js
/users.test.js
/documents/
/services.js
/app.config.js
/index.js
/index.html
/index.scss
index.js is the main entry file which serves as the total include point for all of your components, services, assets, and styles.