Socket
Socket
Sign inDemoInstall

gatsby-plugin-prodo

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gatsby-plugin-prodo

Gatsby plugin to add support for prodo


Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

gatsby-plugin-prodo

A Gatsby plugin for Prodo with built-in server-side rendering support.

Install

npm install --save @prodo/core @prodo/babel-plugin gatsby-plugin-prodo

How to use

Edit gatsby-config.js

const path = require(`path`);

module.exports = {
  plugins: [
    {
      resolve: `gatsby-plugin-prodo`,
      options: {
        model: path.join(__dirname, `path/to/model.js`), // absolute path to the model
        exportName: `model`, // optional name of the model export
        storeConfig: {
          // initial store configuration
          initState: {
            loadingUser: false,
          },
          initLocal: {
            user: null,
          },
        },
      },
    },
  ],
};

Options

  • model - String required: Absolute path to the file containing the Prodo model
  • exportName - String optional: Name of the model export. Defaults to model. If the model is the default export, use default.
  • storeConfig - Any: Object passed as an argument to model.createStore().

Keywords

FAQs

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