JS00001 / JobGenerator

🔥⌨️ A program made to easily gain access to websites that are hiring.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

⭐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.

carbon (3)

🚀 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

image

  • 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.

carbon (2)

  • 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.

About

🔥⌨️ A program made to easily gain access to websites that are hiring.


Languages

Language:JavaScript 100.0%