{"id":26505548,"url":"https://github.com/chase2981/angular4-lib-starter","last_synced_at":"2026-04-12T09:04:47.314Z","repository":{"id":57179822,"uuid":"89173799","full_name":"chase2981/angular4-lib-starter","owner":"chase2981","description":"starter angular4 library","archived":false,"fork":false,"pushed_at":"2017-11-19T08:38:26.000Z","size":3761,"stargazers_count":1,"open_issues_count":7,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-19T20:50:25.284Z","etag":null,"topics":["angular","angular4","javascript","library","rollup","starter-angular4-library","webpack"],"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/chase2981.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}},"created_at":"2017-04-23T21:31:53.000Z","updated_at":"2017-09-10T06:14:59.000Z","dependencies_parsed_at":"2022-09-14T03:20:59.352Z","dependency_job_id":null,"html_url":"https://github.com/chase2981/angular4-lib-starter","commit_stats":null,"previous_names":[],"tags_count":28,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chase2981%2Fangular4-lib-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chase2981%2Fangular4-lib-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chase2981%2Fangular4-lib-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chase2981%2Fangular4-lib-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chase2981","download_url":"https://codeload.github.com/chase2981/angular4-lib-starter/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244583177,"owners_count":20476233,"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":["angular","angular4","javascript","library","rollup","starter-angular4-library","webpack"],"created_at":"2025-03-20T21:47:37.348Z","updated_at":"2026-04-12T09:04:47.275Z","avatar_url":"https://github.com/chase2981.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![travis build](https://img.shields.io/travis/chase2981/angular4-lib-starter.svg)](https://travis-ci.org/chase2981/angular4-lib-starter) [![CircleCI](https://circleci.com/gh/r-park/todo-angular2-firebase.svg?style=shield\u0026circle-token=7f6c19e82f8464c0dc18797b6146767f66d49f90)](https://circleci.com/gh/r-park/todo-angular2-firebase) [![David](https://img.shields.io/david/chase2981/angular4-lib-starter.svg)](https://github.com/chase2981/angular4-lib-starter)\n\n\n# angular4-lib-starter\n###  (currently in development)\n\nstarter angular4 library\n\n\u003c!--\n# Todo app with Angular2, AngularFire2, and Firebase SDK 3\nA simple Todo app example built with **Angular2** and **AngularFire2**. The app features a **Firebase** backend with **OAuth** authentication. Try the demo at \u003ca href=\"https://ng2-todo-app.firebaseapp.com\" target=\"_blank\"\u003eng2-todo-app.firebaseapp.com\u003c/a\u003e.\n\n- Angular2 `2.2.0`\n- Angular2 Router `3.2.0`\n- AngularFire2 `2.0.0-beta.5`\n- Firebase SDK 3\n  - JSON Datastore\n  - OAuth authentication with GitHub, Google, and Twitter\n  - Hosting\n- RxJS\n- SASS\n- Typescript\n- Webpack\n  - Inlines external SCSS files\n  - Inlines external HTML templates\n  - Bundles and minifies release builds\n  - Injects style and script tags into index.html\n\n\nQuick Start\n-----------\n\n```shell\n$ git clone https://github.com/r-park/todo-angular2-firebase.git\n$ cd todo-angular2-firebase\n$ npm install\n$ npm start\n```\n\n\n## Deploying to Firebase\n#### Prerequisites:\n- Create a free Firebase account at https://firebase.google.com\n- Create a project from your [Firebase account console](https://console.firebase.google.com)\n- Configure the authentication providers for your Firebase project from your Firebase account console\n\n#### Configure this app with your project-specific details:\n```javascript\n// .firebaserc\n\n{\n  \"projects\": {\n    \"default\": \"your-project-id\"\n  }\n}\n```\n```javascript\n// src/firebase/index.ts\n\nexport const firebaseConfig = {\n  apiKey: 'your api key',\n  authDomain: 'your-project-id.firebaseapp.com',\n  databaseURL: 'https://your-project-id.firebaseio.com',\n  storageBucket: 'your-project-id.appspot.com'\n};\n```\n\n#### Install firebase-tools:\n```shell\n$ npm install -g firebase-tools\n```\n\n#### Build and deploy the app:\n```shell\n$ npm run build\n$ firebase login\n$ firebase use default\n$ firebase deploy\n```\n\n\nCommands\n--------\n\n|Script|Description|\n|---|---|\n|`npm start`|Start webpack development server @ `localhost:3000`|\n|`npm run build`|Lint, test, and build the application to `./target`|\n|`npm run lint`|Lint `.ts` and `.js` files|\n|`npm run lint:js`|Lint `.js` files with eslint|\n|`npm run lint:ts`|Lint `.ts` files with tslint|\n|`npm run server`|Start express server @ `localhost:3001` to serve built artifacts from `./target` (must run `npm run build` first)|\n|`npm test`|Run unit tests with Karma and Jasmine|\n|`npm run test:watch`|Run unit tests with Karma and Jasmine; watch for changes to re-run tests|\n--\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchase2981%2Fangular4-lib-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchase2981%2Fangular4-lib-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchase2981%2Fangular4-lib-starter/lists"}