https://github.com/grjan7/job-portal
job-portal app
https://github.com/grjan7/job-portal
aggregation aggregation-pipleline demo-app fullstack javascript job job-listings job-listings-filter mongodb nodejs portal rest-api vanilla-javascript
Last synced: 3 months ago
JSON representation
job-portal app
- Host: GitHub
- URL: https://github.com/grjan7/job-portal
- Owner: grjan7
- License: mit
- Created: 2022-11-03T06:52:31.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-07T18:20:19.000Z (over 2 years ago)
- Last Synced: 2024-04-15T06:10:50.358Z (about 1 year ago)
- Topics: aggregation, aggregation-pipleline, demo-app, fullstack, javascript, job, job-listings, job-listings-filter, mongodb, nodejs, portal, rest-api, vanilla-javascript
- Language: JavaScript
- Homepage:
- Size: 227 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# job-portal
> Job portal with filter options for skillsets and countries.
## Technology Used
### Backend- Runtime: Node.js v16.17.0,
- Framework: Express.js
- DB: MongoDB#### Endpoints
> **GET /**
- serves static files
> **GET /jobs?[countries=countries][&skillsets=skillsets][&page=page][&jobsperpage=jobsperpage]**
- serves jobs data to requests with/without queries
- maximum document served is based on jobsperpage
- used MongoDB aggregation pipeline to filter data**Data**
```JSON
[{
"_id": "",
"id": "",
"title": ""
"description": "",
"countries": "array",
"skillsets": "array",
"organization": {
"name": "",
"logo": ""
}
}]```
> **GET /jobs/:id**
- serves job data based on id
- used MQL to filter data**Data**
```JSON
{
"_id": "",
"id": "",
"title": ""
"description": "",
"countries": "array",
"skillsets": "array",
"organization": {
"name": "",
"logo": ""
}
}
```### Frontend
- HTML5, CSS3, JavaScript
**Features**
- filter panel
- joblist panel
- ad panel### Snapshots
#### Default Load of Jobs
#### Filtered By Country [countries: "India"]
#### Filtered By Countries [countries: "India, USA"]
#### Filtered By Countries and Skillsets [countries: "India, USA" & skillsets: "JavaScript"]
