This quickstart guide will describes how to get started with developing plugins to the and how to test them in an available online.
The steps involved
Identify an environment to use
Install correct version of Node.js and a Git client
Download and start the skeleton NPWriterDevKit.
Open the in your browser
Configure the to load your local plugin
To use the you will currently need to use the latest version of Google Chrome. We recommend using Gallium, version 16.x, which is the current LTS version of Node.js when developing plugins for the .
We recommend that you use nvm to use a specific node version using this project. It is fine to bump Node version, but don't forget to adjust it in the .nvmrc file so everyone on the team always uses the same node version when developing.
How to setup shell integration so nvm automatically calls nvm use
To enable SSL support locally, this project uses mkcert to install a local CA, and generating a certificate used by webpack. Follow instructions found here https://github.com/FiloSottile/mkcert to install the mkcert tool.
Run mkcert -install to install the local CA.
You will need a Git client to get the starter Devkit. If you don't already have one you can download a Git client of your choice here.
The NPWriterDevKit is a ready made skeleton with everything you need to get started. This includes build steps and a local plugin server.
If you have a dev environment already setup by Infomaker you should use that environment. If you don't have an appropriate environment please contact Infomaker.
In order to access the plugin using SSL, you need to add this to your local /etc/hosts-file:
Start with cloning the NPWriterDevKit project and remove the .git directory. Then start the local plugin server.
The plugin is now ready to use in a and you should be able to load it by going to https://local.plugins.writer.infomaker.io:3000/index.js in your browser.
Then, if you take a look in the file src/DevKitPackage.js
, you can see that the plugin is named npwriterdevkit
with a default id of se.infomaker.npwriterdevkit
. These values should obviously be changed later. But are fine for now.
The url, name and id is what we need to add the plugin to a running .
As mentioned above you should add the plugin to your environment, or a test environment appointed to you by Infomaker.
In this example we use a Tryout environment which is a standard which contains a core set of plugins. Articles created will be cleared at regular intervals.
Load in your browser. Press CMD+SHIFT+y
or CTRL+SHIFT+y
to open the configuration test tool.
Click the plus to add a new plugin to the plugin list. A new plugin with a random name and id has been added to the configuration.
Let's configure it with the above values. Start with switching the Enabled toggle, then fill in the fields for Id, Name and Plugin src url with the above values. When it looks like the image below press Apply.
The will then store a local copy of the updated configuration in your browsers local storage. The configuration only lives in your browser.
If everything has been done correctly you should now have your locally served NPWriterDevKit plugin loaded in the Tryout .
Next up is to familiarize yourself with the API reference, read our Tutorials and Writer Plugin Building Blocks, and making the plugin yours.