{"id":16131142,"url":"https://github.com/nerddiffer/easy-application-parser","last_synced_at":"2025-04-06T14:22:44.333Z","repository":{"id":79652493,"uuid":"77670106","full_name":"NerdDiffer/easy-application-parser","owner":"NerdDiffer","description":"parser/scraper for easy-application","archived":false,"fork":false,"pushed_at":"2017-01-05T03:39:42.000Z","size":19,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-12T20:29:55.558Z","etag":null,"topics":["jobsearch","parse"],"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/NerdDiffer.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":"2016-12-30T07:40:43.000Z","updated_at":"2017-06-16T19:35:24.000Z","dependencies_parsed_at":null,"dependency_job_id":"f9fcdefa-4d60-4395-8774-9ad02aed667a","html_url":"https://github.com/NerdDiffer/easy-application-parser","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NerdDiffer%2Feasy-application-parser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NerdDiffer%2Feasy-application-parser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NerdDiffer%2Feasy-application-parser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NerdDiffer%2Feasy-application-parser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/NerdDiffer","download_url":"https://codeload.github.com/NerdDiffer/easy-application-parser/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247492877,"owners_count":20947600,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["jobsearch","parse"],"created_at":"2024-10-09T22:19:18.901Z","updated_at":"2025-04-06T14:22:44.309Z","avatar_url":"https://github.com/NerdDiffer.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Easy Application Parser\n\nThere is a list of companies that are considered easy to apply to:\n\nhttps://github.com/j-delaney/easy-application\n\nIt's a long markdown file. Each company is a row in a table with 2 columns:\n\n1. company name\n2. location\n\nThis project is an attempt to query companies in the list.\n\n### Usage\n\nGet the list, save to disk, read:\n\n```js\ngetSaveReadThen(showRandomLine);\ngetSaveReadThen(parseAndPrintCompanies);\n```\n\nIf you've already gotten \u0026 saved the file locally, just read it:\n\n```js\nreadThen(showRandomLine);\nreadThen(parseAndPrintCompanies);\n```\n\n#### Custom callbacks\n\nWrite your own callbacks to pass to `getSaveReadThen` or `readThen` methods.\nData comes in as a utf8 string.\n\n```js\nfunction cb(foo) {\n  console.log(typeof foo); // string\n  const bar = foo.split(\"\\n\");\n  console.log(Array.isArray(bar)); // true\n}\n```\n\nYou could also use `parseCompanies` as a template to straight to the companies:\n\n```js\nconst showCompaniesInWA = parseCompanies.bind(null, row =\u003e {\n  const { locations } = row;\n  const isLocationMatch = locations.some(loc =\u003e loc.state === 'WA');\n  if (isLocationMatch) { console.log(row.company); }\n});\n\nreadThen(showCompaniesInWA);\n```\n\n#### Table row data as an object\n\nEach `row` object has two properties:\n\n1. `company`: an object\n1. `locations`: an array of objects\n\n##### company\n\n```js\n{\n  name: 'name of the company',\n  link: 'link to their careers \u0026 info page'\n}\n```\n\n##### locations\n\nThe `locations` property is an array of objects. The make-up of the array will\nvary from company to company. But each object in the array looks like:\n\n```js\n// If marked as \"Remote\":\n{\n  remote:  true,\n  city:    null,\n  state:   null,\n  country: null\n}\n\n// Otherwise:\n{\n  remote:   false,\n  city:    'city name if available' || null,\n  state:   'state if available'     || null,\n  country: 'country if available'   || null\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnerddiffer%2Feasy-application-parser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnerddiffer%2Feasy-application-parser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnerddiffer%2Feasy-application-parser/lists"}