Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gatsby-source-hire-with-google

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gatsby-source-hire-with-google

Gatsby source plugin for loading job openings from hire.withgoogle.com

  • 1.3.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
decreased by-40%
Maintainers
1
Weekly downloads
 
Created
Source

gatsby-source-hire-with-google

Loads job openings from Hire With Google into Gatsby.js.


Installation

# npm
npm install gatsby-source-hire-with-google

# yarn
yarn add gatsby-source-hire-with-google

How to Use

First, find the company name used in your public jobs url: hire.withgoogle.com/public/jobs/{companyName}.

Next, add companyName in your gatsby-config.js:

{
    ...
    plugins: [
    ...
    {
      resolve: 'gatsby-source-hire-with-google',
      options: {
        companyName: '{COMPANY_NAME}',
      },
    },
  ]
}

How to Query

Hire With Google uses the JobPosting schema from schema.org.

You can read more about their API here.

{
    allHireWithGoogleJob {
      edges {
        node {
          ... https://schema.org/JobPosting for schema
        }
      }
    }
}

Keywords

FAQs

Package last updated on 19 Dec 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc