Socket
Socket
Sign inDemoInstall

gatsby-source-websites

Package Overview
Dependencies
4
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    gatsby-source-websites

a starter repo for creating gatsby plugins in typescript


Version published
Weekly downloads
3
increased by200%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Welcome to gatsby-source-websites 👋

Version Documentation Maintenance License: MIT

a starter repo for creating gatsby plugins in typescript

🏠 Homepage

Install

npm install gatsby-source-websites

or

yarn add gatsby-source-websites

Setup

{
  plugins: [
    {
      resolve: `gatsby-source-websites`
      options: {
        websites: [
          {
            name: `My Super Fresh Website`,
            slug: `my-super-fresh-website`,
            url: `https://superfreshsite.com`,

            // Optional
            description: `This is a super fresh site I build because I'm super fresh`,
            repo: `https://github.com/glweems/superfreshsite`
          },
          {
            // Add another website with same info
          }
        ]
        // Website screenshot options
        sizes: ['1920x1080','1920x1080'],
        delay: 10,
        crop: false,

        // Defaults are
        // sizes: ['1920x1080'],
        // delay: 2,
        // crop: true,
      }
    }
  ]
}

Usage

Query info through graphql

query MyWebsites {
    allWebsites {
        nodes {
            name
            slug
            url
            description
            repo
        }
    }
}

Author

👤 Garrett Weems gwgraphicdesign@gmail.com

  • Github: @glweems

🤝 Contributing

Contributions, issues and feature requests are welcome!
Feel free to check issues page.

Show your support

Give a ⭐️ if this project helped you!

📝 License

Copyright © 2019 Garrett Weems gwgraphicdesign@gmail.com.
This project is MIT licensed.


This README was generated with ❤️ by readme-md-generator

Keywords

FAQs

Last updated on 08 Aug 2019

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc