https://github.com/js00001/jobgenerator
π₯β¨οΈ A program made to easily gain access to websites that are hiring.
https://github.com/js00001/jobgenerator
Last synced: 11 months ago
JSON representation
π₯β¨οΈ A program made to easily gain access to websites that are hiring.
- Host: GitHub
- URL: https://github.com/js00001/jobgenerator
- Owner: JS00001
- Created: 2022-03-08T04:23:33.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-03-08T05:01:45.000Z (about 4 years ago)
- Last Synced: 2025-07-06T11:42:35.009Z (11 months ago)
- Language: JavaScript
- Homepage:
- Size: 70.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# βFind Jobs You Love
If you are seeing this repository, odds are you have also recently received my job application. In fact, it's likely that I discovered your company using this application, so congratulations for standing out π. For me especially, finding the perfect job can be difficult, so I set out to fix that.

## π Problem
Most companies that use major sites such as Indeed and Glassdoor, are outdated and lack modern technologies. This makes these jobs undesirable for upcoming software engineers who are proficient in the latest technologies.
## β€οΈ The Solution
- The first step to a modern company is modern design. One of my favorite websites for finding startup companies that have adapted to the latest technologies is [LandingFolio](https://landingfolio.com)

- Upon further inspection, I discovered that the site generates its content from its API. The API uses one major query parameter, which is updated based on the user's Y offset. I could use this to fetch all of the company sites that the website stores.
- Each request returns an array of company objects, each including images, AND a link to the website! Bingo.

- Based on experience, I used the assumption that most websites will have their hiring page located at either **https://company.com/jobs** OR **https://company.com/careers**
- For each URL, the program will check if the `/jobs` address returns a **404**. If it does, it will attempt to check the `/careers` address. If neither returns a valid webpage, the program will return the website to be not hiring. If one of the hiring URL's is valid, it will write the entire address to `/data/jobs.txt`
## π¨ Setup
- Make sure you have `NodeJS` installed.
- Clone this project
- Open a command prompt in the projects folder, and run `npm install`
- Once the installation has completed, run `node index` to run the application.
- The program will begin going through URL's and checking for endpoints that signify that the company is hiring. Results will be outputted in the `data/jobs.txt` file.