gatsby-plugin-linkedin-resume

1.0.2 • Public • Published

gatsby-plugin-linkedin-resume

Requirement

You need to download your linkedin information here https://www.linkedin.com/psettings/member-data

screenshot

rename the zip file linkedin.zip and put it in the root of your project.

Installation

npm i gatsby-plugin-linkedin-resume
 
yarn add gatsby-plugin-linkedin-resume

gatsby-config.js

module.exports = {
  siteMetadata: {
    ...
  },
  plugins: [
    'gatsby-plugin-linkedin-resume',
    ...
  ],
};

Usage

You can now query your linkedin data in graphql queries

query MyQuery {
  linkedInResume {
    headline
    education {
      schoolName
      startDate
    }
    languages {
      name
    }
    experiences {
      companyName
      title
      description
      location
      startedOn
      finishedOn
    }
  }
}

Readme

Keywords

Package Sidebar

Install

npm i gatsby-plugin-linkedin-resume

Weekly Downloads

0

Version

1.0.2

License

MIT

Unpacked Size

156 kB

Total Files

8

Last publish

Collaborators

  • chazzz