{"id":13424203,"url":"https://github.com/fullcalendar/fullcalendar-angular","last_synced_at":"2025-05-14T06:14:07.238Z","repository":{"id":37773790,"uuid":"107030988","full_name":"fullcalendar/fullcalendar-angular","owner":"fullcalendar","description":"The official Angular component for FullCalendar","archived":false,"fork":false,"pushed_at":"2025-04-02T13:56:29.000Z","size":1644,"stargazers_count":1122,"open_issues_count":2,"forks_count":181,"subscribers_count":32,"default_branch":"main","last_synced_at":"2025-05-07T19:08:56.915Z","etag":null,"topics":["angular","calendar","event","full-sized","fullcalendar"],"latest_commit_sha":null,"homepage":"https://fullcalendar.io/docs/angular","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/fullcalendar.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.txt","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":"2017-10-15T16:54:51.000Z","updated_at":"2025-05-04T18:24:36.000Z","dependencies_parsed_at":"2023-09-22T04:38:29.118Z","dependency_job_id":"b8706bb7-0105-4b84-ac65-edd546313fe3","html_url":"https://github.com/fullcalendar/fullcalendar-angular","commit_stats":{"total_commits":390,"total_committers":13,"mean_commits":30.0,"dds":0.3076923076923077,"last_synced_commit":"5c0b0ac95eafc1bb14aed862137ff07be2ef6d73"},"previous_names":["jamaks/ng-fullcalendar","ng-fullcalendar/ng-fullcalendar"],"tags_count":66,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fullcalendar%2Ffullcalendar-angular","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fullcalendar%2Ffullcalendar-angular/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fullcalendar%2Ffullcalendar-angular/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fullcalendar%2Ffullcalendar-angular/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fullcalendar","download_url":"https://codeload.github.com/fullcalendar/fullcalendar-angular/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254076850,"owners_count":22010611,"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","calendar","event","full-sized","fullcalendar"],"created_at":"2024-07-31T00:00:50.116Z","updated_at":"2025-05-14T06:14:07.195Z","avatar_url":"https://github.com/fullcalendar.png","language":"TypeScript","readme":"\n# FullCalendar Angular Component\n\nThe official [Angular](https://angular.io/) Component for [FullCalendar](https://fullcalendar.io)\n\n## Installation\n\nInstall the Angular connector, the core package, and any plugins (like [daygrid](https://fullcalendar.io/docs/month-view)):\n\n```sh\nnpm install @fullcalendar/angular @fullcalendar/core @fullcalendar/daygrid\n```\n\n## Usage\n\nFirst, connect `FullCalendarModule` to your app module:\n\n```js\nimport { BrowserModule } from '@angular/platform-browser';\nimport { NgModule } from '@angular/core';\nimport { FullCalendarModule } from '@fullcalendar/angular';\nimport { AppComponent } from './app.component';\n\n@NgModule({\n  declarations: [\n    AppComponent\n  ],\n  imports: [\n    BrowserModule,\n    FullCalendarModule // register FullCalendar with your app\n  ],\n  providers: [],\n  bootstrap: [AppComponent]\n})\nexport class AppModule { }\n```\n\nThen, use the `full-calendar` component, supplying an [options](https://fullcalendar.io/docs#toc) object:\n\n```js\nimport { Component } from '@angular/core';\nimport { CalendarOptions } from '@fullcalendar/core';\nimport dayGridPlugin from '@fullcalendar/daygrid';\n\n@Component({\n  selector: 'app-root',\n  templateUrl: `\n    \u003cdiv\u003e\n      \u003ch1\u003eDemo App\u003c/h1\u003e\n      \u003cfull-calendar [options]=\"calendarOptions\"\u003e\u003c/full-calendar\u003e\n    \u003c/div\u003e\n  `,\n  styleUrls: ['./app.component.scss']\n})\nexport class AppComponent {\n  calendarOptions: CalendarOptions = {\n    plugins: [dayGridPlugin],\n    initialView: 'dayGridMonth',\n    weekends: false,\n    events: [\n      { title: 'Meeting', start: new Date() }\n    ]\n  };\n}\n```\n\nYou can even supply nested templates:\n\n```html\n\u003cfull-calendar [options]=\"calendarOptions\"\u003e\n  \u003cng-template #eventContent let-arg\u003e\n    \u003cb\u003e{{arg.timeText}}\u003c/b\u003e\n    \u003ci\u003e{{arg.event.title}}\u003c/i\u003e\n  \u003c/ng-template\u003e\n\u003c/full-calendar\u003e\n```\n\n## Supported Angular Versions\n\n`@fullcalendar/angular` version 6 supports Angular 12 - 18\n\n## Links\n\n- [Documentation](https://fullcalendar.io/docs/angular)\n- [Example Project](https://github.com/fullcalendar/fullcalendar-examples/tree/main/angular15)\n\n## History\n\nThis project is built and maintained by [irustm](https://github.com/irustm) in partnership with the maintainers of FullCalendar. The project was originally called `ng-fullcalendar` which can still be [found on NPM](https://www.npmjs.com/package/ng-fullcalendar).\n\n## Development\n\nYou must install this repo with [PNPM](https://pnpm.io/):\n\n```\npnpm install\n```\n\nAvailable scripts (via `pnpm run \u003cscript\u003e`):\n\n- `build` - build production-ready dist files\n- `watch` - build \u0026 watch development dist files\n- `start` - run a simple example application\n- `test` - test headlessly\n- `test:dev` - test interactively\n- `clean`\n","funding_links":[],"categories":["Инструменты","Third Party Components"],"sub_categories":["Calendars"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffullcalendar%2Ffullcalendar-angular","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffullcalendar%2Ffullcalendar-angular","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffullcalendar%2Ffullcalendar-angular/lists"}