Socket
Socket
Sign inDemoInstall

gatsby-source-behance-images

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

gatsby-source-behance-images

Gatsby source plugin for loading information from Behance and downloading images


Version published
Weekly downloads
2
decreased by-75%
Maintainers
1
Weekly downloads
 
Created
Source

gatsby-source-behance-images

A Gatsby source plugin for sourcing data into your Gatsby application from behance's api and downloading the images to use with gatsby-image

Install

npm install --save gatsby-source-behance-images

or

yarn add gatsby-source-behance-images

How to use:

// In your gatsby-config.js
plugins: [
    {
        resolve: `gatsby-source-behance-images`,
        options: {
            // Visit your profile and grab the name after behance.net/<< username >>
            username: 'glweems',
            // You can get your API Key here: https://www.behance.net/dev/register
            apiKey: '<API Key>'

            // OPTIONAL
            // Set custom directory for downloaded images
            directory: 'public'
        }
    }
];

Query all projects

query AllBehanceProjects {
    allBehanceProjects {
        nodes {
            slug
            name
            modified_on
            description
            created_on
            copyright {
                description
            }
        }
    }
}

Query user information

query BehanceUserQuery {
    behanceUser {
        tags
        company
        avatar
        place {
            city
            country
            location
            state
        }
        stats {
            appreciations
            comments
            followers
            following
            team_members
            views
        }
        url
        website
        names {
            lastName
            displayName
            firstName
            username
        }
    }
}

Query data for gatsby-image

query FluidBehanceImages {
    allFile(filter: { sourceInstanceName: { eq: "behanceProject" } }) {
        edges {
            node {
                childImageSharp {
                    fixed(width: 400) {
                        ...GatsbyImageSharpFixed
                    }
                }
            }
        }
    }
}

Query project covers

query BehanceProjectCovers {
    allFile(filter: { name: { eq: "cover" }, relativeDirectory: { regex: "/gatsby-source-behance-images/" } }) {
        edges {
            node {
                name
                sourceInstanceName
                relativePath
                relativeDirectory
            }
        }
    }
}

Keywords

FAQs

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

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