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.2.0
  • 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 source system.

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}',
        replaceDivs: false // true is default. Hire defaults to use <div> instead of <p> for paragrahs, so if you prefer this, set this to false.

      },
    },
  ]
}

How to Query

{
    allHireWithGoogleJob {
      edges {
        node {
          id
          url
          title
          department
          content
        }
      }
    }
}

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