Socket
Socket
Sign inDemoInstall

@imgcook/ajx-export

Package Overview
Dependencies
142
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @imgcook/ajx-export

plugin template


Version published
Weekly downloads
1
Maintainers
1
Created
Weekly downloads
 

Readme

Source

@imgcook/plugin-example

When using imgcook to generate export code, we take into account the requirements of processing code products (template + style + JS) generated by imgcook platform (such as automatically uploading pictures to our own image space, file directory conversion, etc.), so we open plugin ecological mechanism to provide these capabilities for you to use, and hope to be interested We can build together.

Develop

/**
 * @name plugin example
 * @param option: { data, filePath, config }
 * - data: module and generate code Data
 * - filePath: Pull file storage directory
 * - config: cli config
 */

const pluginHandler = async options => {
  let { data } = options;
  // body...
  return data;
};

module.exports = (...args) => {
  return pluginHandler(...args).catch(err => {
    console.log(err);
  });
};

Reference Example

  • Example 1:https://github.com/imgcook-plugin/plugin-react-mod-add
  • Example 2:https://github.com/imgcook-plugin/plugin-generate
  • Example 3: https://github.com/imgcook-plugin/plugin-images

FAQs

Last updated on 31 Jan 2021

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