This is a complex mod example demonstrating an area chart rendered with d3
and bundled with Webpack
.
All source code for the mod example can be found in the src
folder. Other necessary files reside in the static
folder. Read below for further explanation.
These instructions assume that you have Node.js (which includes npm) installed.
- Open a terminal at the location of this example.
- Run
npm install
. This will install necessary tools. Run this command only the first time you are building the mod and skip this step for any subsequent builds. - Run
npm start
. This will bundle the JavaScript and place it in thedist
folder. This task will watch for changes in the code and will continue running until it is stopped. Whenever you save a file, the changes will be reflected in the visualization mod. - Run
npm run server
in a separate terminal. This will start a development server. - Start editing, for example
src/index.js
. - In Spotfire, follow the steps of creating a new mod and connecting to the development server.
- Open a terminal at the location of this example.
- Run
npm install
. This will install necessary tools. Run this command only the first time you are building the mod and skip this step for any subsequent builds. - Run
npm run build
. This will bundle the JavaScript and place it in thedist
folder. It also copies the contents ofstatic
intodist
. This task will not watch for changes in the code. - In Spotfire, follow the steps of creating a new mod and then browse for, and point to, the manifest in the
dist
folder.