Socket
Book a DemoInstallSign in
Socket

gatsby-source-pluralsight

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

gatsby-source-pluralsight

A Gatsby source plugin for pulling data from your Pluralsight profile page.

unpublished
latest
Source
npmnpm
Version
1.0.5
Version published
Maintainers
1
Created
Source

gatsby-source-pluralsight

Travis Codacy Badge Known Vulnerabilities Greenkeeper badge js-standard-style

A Gatsby source plugin for pulling data from your Pluralsight profile page.

Installation

With npm:

npm install --save gatsby-source-pluralsight

Or with Yarn:

yarn add gatsby-source-pluralsight

Usage

In your gatsby-config.js file add:

module.exports = {
  plugins: [
    {
      resolve: 'gatsby-source-pluralsight',
      options: {
        username: 'your pluralsight username'
      }
    }
  ]
}

Then run gatsby build && gatsby serve or gatsby develop to create the source nodes.

If your project successfully created the nodes. You should be able to query them in the GraphiQL endpoint (http://localhost:8000/___graphql) of you site.

Completed Courses

{
  allPluralsightCourse {
    edges {
      node {
        courseId,
        courseName,
        title,
        duration,
        level,
        timeCompleted,
        authors {
          firstName
          lastName
          handle
          displayName
        }
      }
    }
  }
}

Skills

{
  allPluralsightSkill {
    edges {
      node {
        code
        type
        title
        score
        level
        percentile
        dateCompleted
        url
        thumbnailUrl
      }
    }
  }
}

Maintainers

Osmond van Hemert Github Web

Contributing

If you would like to help out with some code, check the details.

Not a coder, but still want to support? Have a look at the options available to donate.

License

Licensed under MIT.

Keywords

gatsby

FAQs

Package last updated on 04 Aug 2019

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