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

  • 0.0.1
  • 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.withgoogle.com/public/jobs/{companyName} into Gatsby.js. Based on gatsby-source-greenhouse.

Installation

npm install gatsby-source-hire-with-google

or

yarn add gatsby-source-hire-with-google

Usage

To use this source you need to supply the company name used in hire.withgoogle.com/public/jobs/{companyName}.

Next, edit gatsby-config.js to use the plugin:

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

Querying

You can query the nodes created by the plugin as follows:

{
    allHireWithGoogleJob {
        edges {
            node {
                ...
            }
        }
    }
}

Keywords

FAQs

Package last updated on 25 Jun 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