kibana/packages/kbn-plugin-helpers
Thomas Watson 43b97d8a05
Clean up uses of deprecated API's in node core (#51431)
Ensure no deprecated Node.js core API's are used in Kibana. This is
achieved by throwing an error in either development mode or in CI if one
of the deprecated API's is called, and as such, new PR's should no
longer be able to be merged if they use deprecated API's.

Some of these API's (like the `Buffer` constructor`) is a security risk.
2019-12-04 16:17:19 +01:00
..
bin Increase prettier line width to 100 (#20535) 2018-07-09 22:50:37 +02:00
lib Update gulp related packages (major) (#46665) 2019-10-05 07:53:47 -07:00
tasks Clean up uses of deprecated API's in node core (#51431) 2019-12-04 16:17:19 +01:00
cli.js Increase prettier line width to 100 (#20535) 2018-07-09 22:50:37 +02:00
package.json Remove rimraf (#48985) 2019-10-24 06:29:43 -07:00
README.md [typescript] add typescript support for the server and browser (#19104) 2018-05-18 10:54:57 -07:00
tsconfig.json Update gulp related packages (major) (#46665) 2019-10-05 07:53:47 -07:00

@kbn/plugin-helpers

Just some helpers for kibana plugin devs.

Installation

To install the plugin helpers use yarn to link to the package from the Kibana project:

yarn add --dev link:../../kibana/packages/kbn-plugin-helpers

This will link the package from the repository into your plugin, but the plugin-helpers executable won't be available in your project until you run bootstrap again.

yarn kbn bootstrap

Usage

This simple CLI has several tasks that plugin devs can run from to easily debug, test, or package kibana plugins.

$ plugin-helpers help

  Usage: plugin-helpers [options] [command]

  Commands:

    start                       Start kibana and have it include this plugin
    build [options] [files...]  Build a distributable archive
    test                        Run the server and browser tests
    test:browser [options]      Run the browser tests in a real web browser
    test:server [files...]      Run the server tests using mocha

  Options:

    -h, --help     output usage information
    -V, --version  output the version number

Versions

The plugins helpers in the Kibana repo are available for Kibana 6.3 and greater. Just checkout the branch of Kibana you want to build against and the plugin helpers should be up to date for that version of Kibana.

When you're targeting versions before Kibana 6.3, use the @elastic/plugin-helpers from npm. See the versions section of the @elastic/plugin-helpers readme for information about version compatibility.

Configuration

plugin-helpers accepts a number of settings, which can be specified at runtime, or included in a .kibana-plugin-helpers.json file if you'd like to bundle those settings with your project.

It will also observe a .kibana-plugin-helpers.dev.json, much like Kibana does, which we encourage you to add to your .gitignore file and use for local settings that you don't intend to share. These "dev" settings will override any settings in the normal json config.

All configuration setting listed below can simply can be included in the json config files. If you intend to inline the command, you will need to convert the setting to snake case (ie. skipArchive becomes --skip-archive).

Global settings

Settings for start

Setting Description
includePlugins Intended to be used in a config file, an array of additional plugin paths to include, absolute or relative to the plugin root
* Any options/flags included will be passed unmodified to the Kibana binary

Settings for build

Setting Description
skipArchive Don't create the zip file, leave the build path alone
buildDestination Target path for the build output, absolute or relative to the plugin root
skipInstallDependencies Don't install dependencies defined in package.json into build output
buildVersion Version for the build output
kibanaVersion Kibana version for the build output (added to package.json)

TypeScript support

Plugin code can be written in TypeScript if desired. To enable TypeScript support create a tsconfig.json file at the root of your plugin that looks something like this:

{
  // extend Kibana's tsconfig, or use your own settings
  "extends": "../../kibana/tsconfig.json",

  // tell the TypeScript compiler where to find your source files
  "include": [
    "server/**/*",
    "public/**/*"
  ]
}