{"id":17230058,"url":"https://github.com/robinbuschmann/typescript-angular-seed","last_synced_at":"2026-01-21T16:01:38.736Z","repository":{"id":123809084,"uuid":"52069266","full_name":"RobinBuschmann/typescript-angular-seed","owner":"RobinBuschmann","description":"A prototype for an angular project written in TypeScript and modularized with JSPM and SystemJS","archived":false,"fork":false,"pushed_at":"2016-11-01T09:16:48.000Z","size":1047,"stargazers_count":0,"open_issues_count":5,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-06T07:49:29.578Z","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":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/RobinBuschmann.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-19T07:19:33.000Z","updated_at":"2016-11-01T09:16:49.000Z","dependencies_parsed_at":null,"dependency_job_id":"8c351c2a-7375-45fe-b278-18b5aa214b69","html_url":"https://github.com/RobinBuschmann/typescript-angular-seed","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/RobinBuschmann/typescript-angular-seed","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobinBuschmann%2Ftypescript-angular-seed","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobinBuschmann%2Ftypescript-angular-seed/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobinBuschmann%2Ftypescript-angular-seed/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobinBuschmann%2Ftypescript-angular-seed/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RobinBuschmann","download_url":"https://codeload.github.com/RobinBuschmann/typescript-angular-seed/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobinBuschmann%2Ftypescript-angular-seed/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28635926,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-21T15:01:31.228Z","status":"ssl_error","status_checked_at":"2026-01-21T14:42:58.942Z","response_time":86,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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-10-15T04:52:19.425Z","updated_at":"2026-01-21T16:01:38.715Z","avatar_url":"https://github.com/RobinBuschmann.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# typescript-angular-seed\n\nA prototype for a single page application based on **angular**, written in **TypeScript** and modularized with **JSPM** and **SystemJS**. \nIt also takes advantage of TypeScript decorators for angular([at](https://github.com/RobinBuschmann/angular-typescript)), \nwhich allows an **angular 2**-like implementation.\n\n## Installation\n\nNode.js and npm are required\n\n````shell\nnpm install\n````\nThis also runs `jspm install` and `tsd install`\n\n## Running development server\nRuns a server, which listens to file changes (Browser is automatically opened). TypeScript is compiled on the browser.\n\n````shell\nnpm run serve\n````\n\n## Creating build\n\nCreates a build in `dist/` directory. All JS files are bundled  and minifed to `build.js`. CSS is compressed to `main.css`.\n\n````shell\nnpm run build:prod\n````\n\n## Run production server\n\nRuns `npm run build:prod`, copies `src` files to `test` for debugging and runs a server. *Notice: If you want to publish your `dist/` directory you should run `npm run build:prod` again to get rid of the `src` directory within `dist`(or simply delete `src` from `dist)*\n\n````shell\nnpm run serve:prod\n````\n\n## Testing\n\nRuns `mocha` tests defined in `test/spec` within `karma` and creates code coverage with `istanbul` (`test/coverage`).\n\n````shell\nnpm run serve:prod\n````\n\n## Documentation\n\n### SystemJS\n\nSince JSPM removes comments from the SystemJS config file (`src/config.js`) it is important to explain some configurations:\n\n#### packages\nThe SystemJS documentation for packages can be found [here](https://github.com/systemjs/systemjs/blob/master/docs/config-api.md#packages)\n\n* `./app` is defined for **development**. \n* `./src/app` is for **bundling** (JSPM tries to load the files from `./src/app`)\n* `./base` is for **testing** (The base directory of the karma runner is `./base`. \nWhen running tests, the ts files are all compiled. That's why the glob looks like `./app/*.js`)\n\n````src/config.js\n  packages: {\n    \"./app\": {\n      \"defaultExtension\": \"ts\"\n    },\n    \"./src/app\": {\n      \"defaultExtension\": \"ts\",\n      \"meta\": {\n        \"*.ts\": {\n          \"loader\": \"ts\"\n        }\n      }\n    },\n    \"./base\": {\n      \"meta\": {\n        \"./app/*.js\": {\n          \"format\": \"register\"\n        }\n      }\n    }\n  },\n````\n#### meta\nThe SystemJS documentation for meta can be found [here](https://github.com/systemjs/systemjs/blob/master/docs/config-api.md#meta)\n\n* `at`: This defines the **reflect-metadata** library as a dependency for **angular-typescript** library\n* `reflect-metadata/*` SystemJS scans a library for `require` syntax if _esm_, _csj_ or _amd_ is defined as \n[format](https://github.com/systemjs/systemjs/blob/master/docs/module-formats.md), if found it tries to load\nthe required module in any case. reflect-metadata contains\na require call. That is why this is set to _global_.\n\n````src/config.js\n  meta: {\n    \"at\": {\n      \"deps\": [\n        \"reflect-metadata\"\n      ]\n    },\n    \"reflect-metadata/*\": {\n      \"format\": \"global\"\n    }\n  },\n````\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobinbuschmann%2Ftypescript-angular-seed","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frobinbuschmann%2Ftypescript-angular-seed","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobinbuschmann%2Ftypescript-angular-seed/lists"}