{"id":21177566,"url":"https://github.com/grjan7/job-portal","last_synced_at":"2026-04-20T13:31:55.934Z","repository":{"id":119280500,"uuid":"561196594","full_name":"grjan7/job-portal","owner":"grjan7","description":"job-portal app","archived":false,"fork":false,"pushed_at":"2022-11-07T18:20:19.000Z","size":232,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-23T16:05:10.304Z","etag":null,"topics":["aggregation","aggregation-pipleline","demo-app","fullstack","javascript","job","job-listings","job-listings-filter","mongodb","nodejs","portal","rest-api","vanilla-javascript"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/grjan7.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2022-11-03T06:52:31.000Z","updated_at":"2023-12-08T11:37:40.000Z","dependencies_parsed_at":"2023-07-02T16:46:44.246Z","dependency_job_id":null,"html_url":"https://github.com/grjan7/job-portal","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/grjan7/job-portal","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grjan7%2Fjob-portal","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grjan7%2Fjob-portal/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grjan7%2Fjob-portal/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grjan7%2Fjob-portal/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/grjan7","download_url":"https://codeload.github.com/grjan7/job-portal/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grjan7%2Fjob-portal/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32048936,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T11:35:06.609Z","status":"ssl_error","status_checked_at":"2026-04-20T11:34:48.899Z","response_time":94,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["aggregation","aggregation-pipleline","demo-app","fullstack","javascript","job","job-listings","job-listings-filter","mongodb","nodejs","portal","rest-api","vanilla-javascript"],"created_at":"2024-11-20T17:16:27.540Z","updated_at":"2026-04-20T13:31:55.912Z","avatar_url":"https://github.com/grjan7.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# job-portal\n\n\u003e Job portal with filter options for skillsets and countries.\n\n## Technology Used\n### Backend\n\n- Runtime: Node.js v16.17.0, \n- Framework: Express.js\n- DB: MongoDB\n\n#### Endpoints\n\n\u003e **GET /**\n\n- serves static files\n\n\u003e **GET /jobs?[countries=countries][\u0026skillsets=skillsets][\u0026page=page][\u0026jobsperpage=jobsperpage]**\n\n- serves jobs data to requests with/without queries\n- maximum document served is based on jobsperpage\n- used MongoDB aggregation pipeline to filter data\n\n**Data**\n\n```JSON\n[{\n  \"_id\": \"\u003cObjectId\u003e\",\n  \"id\": \"\u003cstring\u003e\",\n  \"title\": \"\u003cstring\u003e\"\n  \"description\": \"\u003cstring\u003e\",\n  \"countries\": \"array\u003cstring\u003e\",\n  \"skillsets\": \"array\u003cstring\u003e\",\n  \"organization\": {\n    \"name\": \"\u003cstring\u003e\",\n    \"logo\": \"\u003cstring\u003e\"\n  }\n}]\n\n```\n\n\u003e **GET /jobs/:id**\n\n- serves job data based on id\n- used MQL to filter data\n\n**Data**\n\n```JSON\n{\n  \"_id\": \"\u003cObjectId\u003e\",\n  \"id\": \"\u003cstring\u003e\",\n  \"title\": \"\u003cstring\u003e\"\n  \"description\": \"\u003cstring\u003e\",\n  \"countries\": \"array\u003cstring\u003e\",\n  \"skillsets\": \"array\u003cstring\u003e\",\n  \"organization\": {\n    \"name\": \"\u003cstring\u003e\",\n    \"logo\": \"\u003cstring\u003e\"\n  }\n}\n```\n\n### Frontend\n\n- HTML5, CSS3, JavaScript\n\n**Features**\n- filter panel\n- joblist panel\n- ad panel\n\n### Snapshots\n\n#### Default Load of Jobs\n![Unfiltered](/snapshots/unfiltered.png)\n\n#### Filtered By Country [countries: \"India\"]\n![country filter](/snapshots/country-filter.png)\n\n#### Filtered By Countries [countries: \"India, USA\"]\n![multiple countries filter](/snapshots/countries-filter.png)\n\n#### Filtered By Countries and Skillsets [countries: \"India, USA\" \u0026 skillsets: \"JavaScript\"]\n![countries and skillsets filter](/snapshots/countries-skillsets-filter.png)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgrjan7%2Fjob-portal","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgrjan7%2Fjob-portal","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgrjan7%2Fjob-portal/lists"}