New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

gridsome-source-hashnode-devblog

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gridsome-source-hashnode-devblog

Gridsome plugin to retrieve blog posts from your devblog on hashnode.

  • 0.2.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

gridsome logo

gridsome-source-hashnode-devblog

Gridsome plugin to retrieve blog posts from your devblog on hashnode.

npm version npm

Installation

# For npm
$ npm install gridsome-source-hashnode-devblog
# For yarn
$ yarn add gridsome-source-hashnode-devblog

Usage

Add gridsome-source-hashnode-devblog to plugin array with following configurable options to gridsome.config.js

module.exports = {
  plugins: [
    {
      use:  'gridsome-source-hashnode-devblog',
      options: {
        username:  '', // Your username on hashnode without `@`.
        typeName:  'DevblogPost' // Optional
      }
    }
  ]
}

Example Query

query {
  allDevblogPost {
    edges {
      node {
        title
        slug
        type
        dateAdded
        contentMarkdown
        brief
        coverImage
        tags {
          name
        }
        dateUpdated
      }
    }
  }
}

License (MIT)

Open LICENSE file for more info

Keywords

FAQs

Package last updated on 24 Jan 2021

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