{"id":19273999,"url":"https://github.com/rintoj/pathway","last_synced_at":"2025-02-23T20:45:16.892Z","repository":{"id":90422198,"uuid":"52090925","full_name":"rintoj/pathway","owner":"rintoj","description":"Light-weight and easy to use quick-start project for Angular 2 apps.","archived":false,"fork":false,"pushed_at":"2016-05-11T18:45:07.000Z","size":5047,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-05T14:29:18.409Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rintoj.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-02-19T13:54:07.000Z","updated_at":"2016-12-24T15:46:27.000Z","dependencies_parsed_at":null,"dependency_job_id":"da13c5ad-3b8e-4818-b545-84a15d42457a","html_url":"https://github.com/rintoj/pathway","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rintoj%2Fpathway","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rintoj%2Fpathway/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rintoj%2Fpathway/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rintoj%2Fpathway/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rintoj","download_url":"https://codeload.github.com/rintoj/pathway/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240378873,"owners_count":19792039,"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":[],"created_at":"2024-11-09T20:44:46.929Z","updated_at":"2025-02-23T20:45:16.862Z","avatar_url":"https://github.com/rintoj.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Angular 2 - Quick-start Project\n\nLight-weight and easy to use quick-start project for Angular 2 apps.\n\n## Stack\n- [Gulp 4](http://gulpjs.com/)\n- [Angular 2](https://angular.io/)\n- [TypeScript](http://www.typescriptlang.org/)\n- [Typings](https://github.com/typings/typings)\n- [Sass](http://sass-lang.com/)\n- [Karma](http://karma-runner.github.io/)\n- [Protractor](http://www.protractortest.org/)\n\n## Workflow Features\n- **Gulp** fully automated workflow.\n- **Development** and **production** environment targets.\n- **Unit** and **E2E** test samples.\n- **Code coverage** report with TypeScript mapping.\n- **TypeScript** definition manager, linting, sourcemaps and transpilation (ES5).\n- **Sass** linting, sourcemaps and transpilation.\n- **TypeDoc** documentation generator.\n- **Change Log** generated based on Git metadata.\n\n## Angular 2 Features\n- Directives\n- Pipes\n- Services\n- Router\n- REST API\n- Template Cache\n- Modular Components\n- Dependency Injection\n- Custom Events\n\n## Global Dependencies\n\n| Dependency | Version | Install                               |\n| ---------- | ------- | ------------------------------------- |\n| NodeJS     | 5.x.x   | [http://node.org](http://nodejs.org/) |\n| npm        | 3.x.x   | [http://node.org](http://nodejs.org/) |\n| Gulp CLI   | 0.4.x   | `npm install gulpjs/gulp-cli#4.0 -g`  |\n| Typings    | 0.6.x   | `npm install typings -g`              |\n\n## Install\n```\n$ git clone https://github.com/ghpabs/angular2-seed-project.git \u0026\u0026 cd angular2-seed-project\n$ npm install\n$ typings install\n$ gulp build serve\n```\n\nNote: the `serve` task won't automatically launch the browser for you.\nTo view the app please open a new tab and go to `http://localhost:8080/`.\n\n## Usage\n### Tasks\n- `$ gulp clean`: Remove generated folders - `build`, `docs` and `coverage`.\n- `$ gulp unit`: Run Karma against all `test/unit/**/*.spec.js` files.\n- `$ gulp e2e`: Run Protractor against all `test/e2e/**/*.e2e.js` files. The project must be being served before running end-to-end tests.\n- `$ gulp build`: Create distribution package. See environment `targets` below.\n- `$ gulp serve`: Start web-server and live-reload. See environment `targets` below.\n\n### Environments\nDefault: `NODE_ENV=development` and `PORT=8080`.\n\n#### Development:\n- `$ gulp build serve` is equivalent to\n`$ NODE_ENV=development PORT=8080 gulp build serve`.\n\n#### Production\n- `$ NODE_ENV=production gulp build serve`.\n\n## Ecosystem\nYou might have noticed that we have quite a few files in our `root` folder. You might also be wondering why we need them and whether they are applicable to your use case. Here is a brief explanation:\n\n- **.travis.yml**: Travis is our Continuos Integration (CI) server and this is its configuration file. We have added hooks to GitHub so automated tests will kick in after each commit.\n- **karma.shim.js**: Unit testing Angular2 apps is still in its early days and this file helps us setup the test runner - Karma.\n\n## Change Log\nThis project generates the `CHANGELOG.md` from Git metadata using the [conventional-changelog](https://github.com/ajoslin/conventional-changelog) library.\n\nNote that the commit messages must follow [Angular conventions][angular-commit-message-format] for this feature to work.\n\n### Recommended Workflow\n- Make changes\n- Commit those changes\n- Make sure Travis turns green\n- Bump version in `package.json`\n- Run `npm run changelog`\n- Commit `package.json` and `CHANGELOG.md` files\n- Tag\n- Push\n\n## Contributing\nIn lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. When submitting a PR, make sure that the commit messages match the [Angular conventions][angular-commit-message-format].\n\n## License\nMIT\n\n[angular-commit-message-format]: https://github.com/angular/angular/blob/master/CONTRIBUTING.md#commit-message-format\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frintoj%2Fpathway","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frintoj%2Fpathway","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frintoj%2Fpathway/lists"}