{"id":20878910,"url":"https://github.com/perongh/simple-ics","last_synced_at":"2025-05-12T16:31:13.264Z","repository":{"id":58726668,"uuid":"533414796","full_name":"PeronGH/simple-ics","owner":"PeronGH","description":"A super simple deno module for generating .ics files.","archived":false,"fork":false,"pushed_at":"2024-07-08T15:39:16.000Z","size":18,"stargazers_count":5,"open_issues_count":1,"forks_count":4,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-25T17:48:52.663Z","etag":null,"topics":["calendar","deno","ics","typescript"],"latest_commit_sha":null,"homepage":"https://deno.land/x/simple_ics","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/PeronGH.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":"2022-09-06T16:41:01.000Z","updated_at":"2024-05-13T19:44:40.000Z","dependencies_parsed_at":"2023-01-31T06:15:59.985Z","dependency_job_id":null,"html_url":"https://github.com/PeronGH/simple-ics","commit_stats":null,"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PeronGH%2Fsimple-ics","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PeronGH%2Fsimple-ics/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PeronGH%2Fsimple-ics/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PeronGH%2Fsimple-ics/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PeronGH","download_url":"https://codeload.github.com/PeronGH/simple-ics/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253776781,"owners_count":21962554,"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":["calendar","deno","ics","typescript"],"created_at":"2024-11-18T07:14:36.364Z","updated_at":"2025-05-12T16:31:13.004Z","avatar_url":"https://github.com/PeronGH.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Simple ICS\n## A super simple deno module for generating .ics files.\n\n### Example\n```typescript\nimport {\n  Event,\n  EventConfig,\n  Calendar,\n} from 'https://deno.land/x/simple_ics/mod.ts';\n\nconst cfg1: EventConfig = {\n  title: 'Write Typescript',\n  beginDate: [2022, 9, 6, 9, 30],\n  endDate: [2022, 9, 6, 10],\n  desc: 'Implement a module to generate .ics files',\n};\n\nconst cfg2: EventConfig = {\n  title: 'Write Rust for 3 days',\n  beginDate: new Date(),\n  duration: 3600, // Duration: 3600s, or 1h\n  rrule: {\n    freq: 'DAILY',\n    count: 3,\n  },\n  alarm: {\n    desc: 'Write Rust NOW',\n    advance: 30,\n  },\n};\n\nconst evt1 = new Event(cfg1);\nconst evt2 = new Event(cfg2);\n\nconst calendar = new Calendar([evt1, evt2]);\n\nconsole.log(calendar.toString());\n```\n\n### Credits\nSome code is borrowed from https://github.com/adamgibbons/ics\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fperongh%2Fsimple-ics","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fperongh%2Fsimple-ics","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fperongh%2Fsimple-ics/lists"}