{"id":28752077,"url":"https://github.com/avesta-hq/generator-ta-angular-webpack-jest","last_synced_at":"2026-04-09T17:56:23.204Z","repository":{"id":57248998,"uuid":"121959812","full_name":"team-avesta/generator-ta-angular-webpack-jest","owner":"team-avesta","description":"This repository contains Yeaoman generator which helps you create an opinionated Angular 1.x seed project configured with webpack and Jest for Unit tests.","archived":false,"fork":false,"pushed_at":"2018-04-21T10:16:43.000Z","size":1424,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-05-23T00:54:29.134Z","etag":null,"topics":["angularjs","es6","generator","jest","sass","webpack","yo"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/team-avesta.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-02-18T14:38:24.000Z","updated_at":"2018-04-21T10:14:58.000Z","dependencies_parsed_at":"2022-08-24T16:22:26.601Z","dependency_job_id":null,"html_url":"https://github.com/team-avesta/generator-ta-angular-webpack-jest","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/team-avesta/generator-ta-angular-webpack-jest","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/team-avesta%2Fgenerator-ta-angular-webpack-jest","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/team-avesta%2Fgenerator-ta-angular-webpack-jest/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/team-avesta%2Fgenerator-ta-angular-webpack-jest/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/team-avesta%2Fgenerator-ta-angular-webpack-jest/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/team-avesta","download_url":"https://codeload.github.com/team-avesta/generator-ta-angular-webpack-jest/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/team-avesta%2Fgenerator-ta-angular-webpack-jest/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260256276,"owners_count":22981809,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["angularjs","es6","generator","jest","sass","webpack","yo"],"created_at":"2025-06-16T23:09:33.103Z","updated_at":"2025-12-30T22:31:46.345Z","avatar_url":"https://github.com/team-avesta.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# yo-angular-material-webpack-jest\n\nThis is a Yeaoman Generator for creating an opionated Angular 1.x seed project with following tools stack\n- Angular Material (for angular 1.x)\n- Jest for unit tests\n- Webpack as module bundler with Babel for transpiling\n\n### Install\n\n##### Install required tools `yo`, and `webpack`:\n```\nnpm install -g yo webpack\n```\n\n##### Install `generator-ta-angular-webpack-jest`:\n```\nnpm install -g generator-ta-angular-webpack-jest\n```\n\n### Directory Layout\n\n```shell\n\n├── /config/                              # Build config\n│   └── /webpack/                         # Webpack config files\n│       ├── /environments/                # Webpack env dependent configs\n│       └── global.js                     # Global webpack settings for all envs\n├── /dist/                                # The folder for compiled output\n├── /node_modules/                        # 3rd-party libraries and utilities\n├── /src/                                 # Source folder\n│   ├── /app/                             # Application code\n│   │   ├── /components/                  # Shared UI components\n│   │   │   └── /footer/                  # Footer shared component. Place footer's styles, directives, templates here\n│   │   ├── /core/                        # Shared angular services/directives\n│   │   │   ├── /directives/              # Shared directives\n│   │   │   ├── /services/                # Shared services\n│   │   │   └── /core.module.js           # Import of all core components should be here\n│   │   ├── /pages/                       # All pages-dependent content should place here\n│   │   │   ├── /main/                    # Main page\n│   │   │   │   ├── /main.controller.js   # Main page Controller\n│   │   │   │   ├── /main.html            # Main page template\n│   │   │   │   ├── /main.module.js       # Main page module\n│   │   │   │   └── /main.route.js        # Main page routes\n│   │   │   └── /.../                     # Other pages...\n│   │   ├── /index.bootstrap.js           # Entry point. Import internal and external modules and bootstrap (RUN) angular application\n│   │   ├── /index.components.js          # Define all your custom components here\n│   │   ├── /index.config.js              # Function that will be triggered in Angular's \"config\" phase\n│   │   ├── /index.module.js              # Main application's module\n│   │   ├── /index.routes.js              # Describe only \"otherwise\" and async routes here\n│   │   ├── /index.run.js                 # Function that will be triggered in Angular's \"run\" phase\n│   │   ├── /index.vendor.js              # Import all vendors and 3rd party plugins here\n│   ├── /assets/                          # Static content\n│   │   ├── /images/                      # Images\n│   │   ├── /js/                          # Extra libs folder\n│   │   └── /styles/                      # Styles folder\n│   │       ├── /css/                     # CSS\n│   │       └── /sass/                    # SASS\n│   ├── favicon.ico                       # Application icon to be displayed in bookmarks\n│   └── tpl-index.html                    # Template for html-webpack-plugin that will be transpiled into index.html in /dist\n│── .babelrc                              # Babel config with presets and plugins\n│── .gitignore                            # List of files to ignore by git\n│── package.json                          # The list of project dependencies and NPM scripts\n└── webpack.config.js                     # Bundling and optimization settings for Webpack\n```\n\n### Run\n\n##### Create a new directory, and go into:\n```\nmkdir my-new-project \u0026\u0026 cd $_\n```\n\n##### Run `yo generator-ta-angular-webpack-jest`, and select desired technologies.\n##### `npm start` or `npm run dev` - to start development server on http://localhost:8080.\n##### `npm run build` - To make production-ready build run  after few moments you will see build id `dist` folder.\n##### `npm test` - to run unit tests with jest\n\n### Contribute\n\n##### If you want to contribute:\n\u003e * Fork repository and clone project to your machine\n\u003e * Install npm packages and create new feature/fix branch\n\u003e * Link local project to be able install generator with `yo` from folder like from global installed package:\n\u003e ``` npm link ```\n\u003e * Make PR\n\n#### Forked from [generator-angular-webpack-es6](https://www.npmjs.com/package/generator-angular-webpack-es6) project and customized according to our needs.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Favesta-hq%2Fgenerator-ta-angular-webpack-jest","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Favesta-hq%2Fgenerator-ta-angular-webpack-jest","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Favesta-hq%2Fgenerator-ta-angular-webpack-jest/lists"}