{"id":20604848,"url":"https://github.com/themost-framework/themost-event-app","last_synced_at":"2026-06-04T17:31:34.283Z","repository":{"id":89432157,"uuid":"175816220","full_name":"themost-framework/themost-event-app","owner":"themost-framework","description":"Event Management Api Server Prototype with MOST Web Framework Codename Blueshift","archived":false,"fork":false,"pushed_at":"2019-05-25T06:29:44.000Z","size":939,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-17T19:53:36.467Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/themost-framework.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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":"2019-03-15T12:28:26.000Z","updated_at":"2020-04-17T05:26:59.000Z","dependencies_parsed_at":null,"dependency_job_id":"4f4f382d-bee0-4b7a-887f-10424eaf5746","html_url":"https://github.com/themost-framework/themost-event-app","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/themost-framework/themost-event-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/themost-framework%2Fthemost-event-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/themost-framework%2Fthemost-event-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/themost-framework%2Fthemost-event-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/themost-framework%2Fthemost-event-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/themost-framework","download_url":"https://codeload.github.com/themost-framework/themost-event-app/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/themost-framework%2Fthemost-event-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33916319,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-04T02:00:06.755Z","response_time":64,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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-11-16T09:25:12.276Z","updated_at":"2026-06-04T17:31:34.174Z","avatar_url":"https://github.com/themost-framework.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"#### Event Management Api Server with MOST Web Framework Codename Blueshift\n\n##### Installation\n\nClone git repository\n\n    git clone https://github.com/themost-framework/themost-event-app.git\n    \nInstall dependencies\n\n    npm i\n    \nBuild app\n\n    npm run build\n    \nSeed data\n\nAdd sample data by executing:\n\n    npm run seed\n    \nand finally serve app:\n\n    npm run serve\n    \nOpen your browser and navigate to http://localhost:3000/\n\n##### Specification\n\nEvent Management Api Server prototype is a typical [MOST Web Framework](https://github.com/themost-framework/themost) \nthat exposes a wide set of endpoints under /api/. \nThese endpoints follows [OData v4 specification](https://www.odata.org/documentation/) to get, insert, update or delete entities or entity sets. \n\nSome of them are:\n\nGet available entity sets:\n\n    GET http://localhost:3000/api/\n    \nGet entity set metadata:\n\n    GET http://localhost:3000/api/$metadata\n    \nGet current user:\n\n    GET http://localhost:3000/api/users/me\n    \nGet events:\n\n    GET http://localhost:3000/api/events\n    \nExpand entities:\n\n    GET http://localhost:3000/api/events?$expand=performers\n    \nQuery events:\n\n     GET http://localhost:3000/api/events?$filter=eventStatus/alternateName eq 'EventOpened'\n\nand many others.\n\nEvent Management Api Server prototype uses [cron-job specification](https://cron-job.org/en/) for creating recursive events.\nAn EventHoursSpecification object is being converted to a cron-job like object which gives a set of auto generated events.\n\nThe following event hours specification object:\n\n    {\n        \"name\": \"1st hour\",\n        \"validFrom\": \"2018-09-01T00:00:00+03:00\",\n        \"validThrough\": \"2018-09-30T00:00:00+03:00\",\n        \"duration\": \"PT45M\",\n        \"minuteOfHour\": \"15\",\n        \"hourOfDay\": \"8\",\n        \"dayOfWeek\": \"1\",\n        \"identifier\": \"00000000-0000-0000-0000-000000000001\"\n    }\n\ndefines an event recurrence pattern which is equivalent with the following cron job:\n\n    15 8 * * 1\n    \nThis job will generate a set of sub-events for the defined period between 1-Sep 2018 to 30-Sep 2018.\n\n    # POST /api/events\n    \n    {\n        \"eventHoursSpecification\": {\n            \"identifier\": \"00000000-0000-0000-0000-000000000001\"\n        },\n        \"performer\": {\n            \"email\": \"cassandra.stevenson@example.com\"\n        },\n        \"maximumAttendeeCapacity\": 5\n    }\n    \ne.g. \n\n    {\n        \"startDate\": \"2018-09-03 08:15:00.000+00:00\",\n        \"endDate\": \"2018-09-03 09:00:00.000+00:00\",\n        \"maximumAttendeeCapacity\": 5,\n        \"eventStatus\": {\n            ...\n        },\n        \"superEvent\": 46,\n        \"duration\": \"PT45M\",\n        \"performer\": 12,\n        \"additionalType\": \"Event\",\n        \"id\": 47,\n        \"dateCreated\": \"2019-05-14 14:12:05.091+00:00\",\n        \"dateModified\": \"2019-05-14 14:12:05.093+00:00\",\n        \"createdBy\": 0,\n        \"modifiedBy\": 0\n    },\n    {\n        \"startDate\": \"2018-09-10 08:15:00.000+00:00\",\n        \"endDate\": \"2018-09-10 09:00:00.000+00:00\",\n        \"maximumAttendeeCapacity\": 5,\n        \"eventStatus\": {\n            ...\n        },\n        \"superEvent\": 46,\n        \"duration\": \"PT45M\",\n        \"performer\": 12,\n        \"additionalType\": \"Event\",\n        \"id\": 48,\n        \"dateCreated\": \"2019-05-14 14:12:05.119+00:00\",\n        \"dateModified\": \"2019-05-14 14:12:05.123+00:00\",\n        \"createdBy\": 0,\n        \"modifiedBy\": 0\n    }\n\nEvent Management Api Server prototype uses a extended set of data models and serves several endpoints\nfor managing events. \n\n###### Features\n\nEvent management system prototype models have the following features:\n\n* Manage events of any type (organize parent events)\n* Organize event based on event organizers like organization, education organization etc\n* Manage event status (e.g. cancel, postpone, schedule, re-schedule an event)\n* Manage event performers, attendees and audiences\n* Manage event locations\n* Create event hours specification for recursive events\n* Create and manage recursive events\n* Manage person availability for performing or attending an event\n* Testing api services\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthemost-framework%2Fthemost-event-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthemost-framework%2Fthemost-event-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthemost-framework%2Fthemost-event-app/lists"}