1.0.4 • Published 3 years ago

@digital-engine/bubble-plugin-helpers v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

⭐️ Features

  • Object : handle more easily data objects and their relations
  • Debug : functions supporting debug tasks for your plugins, like logging efficiently the objects you are handling
  • Mock : easily mock objects used in bubble plugins, very usefull for implementing unit tests

📦 Getting Started

In your plugin's elements and client side actions

Add the following to the Shared / HTML Header section :

<script type="application/javascript" src="https://unpkg.com/@digital-engine/bubble-plugin-helpers@1.0.4/build/index.js" />

In your plugin's server side actions

  • Activate the This action uses node modules checkbox in your action configuration (at the bottom of the page)
  • Add this library to the newly opened section, respecting the standard package.json format :
{
  "dependencies": {
    "@digital-engine/bubble-plugin-helpers": "^1.0.4"
  }
}