Flexmonster Software License Agreement (“Agreement”) has been significantly revised and is effective as of September 30, 2024.
The following modifications were made:
The modified version of Flexmonster Software License Agreement is available here.
Downloading, installing, and/or continuing to use Flexmonster Software after September 30, 2024, constitutes Licensee’s acceptance of the terms and conditions of the modified version of Flexmonster Software License Agreement. If Licensee does not agree to any of these terms and conditions, they must cease using Flexmonster Software and must not download, install, use, access, or continue to access Flexmonster Software. By continuing to use Flexmonster Software or renewing the license under License Model or Maintenance after the effective date of any modifications to Agreement, Licensee accepts and agrees to be bound by the terms and conditions of the modified Agreement.
This guide describes how to install Flexmonster Data Server as a console application. Flexmonster Pivot can be downloaded here. You can also learn about other ways of using the Data Server.
The Data Server is available for the following operating systems:
npm install -g flexmonster-cli
To install the Data Server, continue with the following steps.
To get the Data Server, run the flexmonster add fds command:
flexmonster add fds executable
This command installs the Data Server for your operating system.
The Data Server's files can be found in the flexmonster‑data‑server/
folder in your working directory.
The flexmonster-data-server/
folder has the following structure:
flexmonster-data-server
— an executable version of Flexmonster Data Server.flexmonster-config.json
— the Flexmonster Data Server configuration file. It contains a configured ready-to-use CSV data source "sample-index"
. Learn more about the Data Server configuration.sample-data/data.csv
— the file with sample CSV data to create "sample-index"
.service-install
— the executable file to install the Data Server as a service.service-uninstall
— the executable file to uninstall the Data Server as a service.Flexmonster-Admin-Panel
— the file to install Flexmonster Admin Panel.To start using Flexmonster Data Server as a console application, run the executable file from the console:
flexmonster-data-server.exe
./flexmonster-data-server
Now Flexmonster Data Server is up and running. To check its status, open the http://localhost:9500/
URL in a browser.
If Flexmonster is not yet embedded, set up an empty component in your webpage:
Complete the Integrating Flexmonster guide. Your code should look similar to the following example:
let pivot = new Flexmonster({ container: "pivotContainer", componentFolder: "node_modules/flexmonster/", toolbar: true });
Complete the Integration with React guide. Your code should look similar to the following example:
<FlexmonsterReact.Pivot toolbar={true} />
Complete the Integration with Angular guide. Your code should look similar to the following example:
<fm-pivot [toolbar]="true"> </fm-pivot>
Complete the Integration with Vue guide. Your code should look similar to the following example:
<Pivot toolbar />
To connect to Flexmonster Data Server, configure the report as follows:
let pivot = new Flexmonster({ container: "pivotContainer", componentFolder: "node_modules/flexmonster/", toolbar: true, report: { dataSource: { type: "api", url: "http://localhost:9500", index: "sample-index" } } });
Note The "sample-index"
is the index defined in flexmonster-config.json
for the sample-data/data.csv
file.
Open the webpage in the browser: the pivot table with the sample CSV data is shown.
Learn more about configuring the report.
To completely uninstall the Data Server, you need to delete the Data Server's executable and folders.
Note The uninstallation is irreversible, so ensure you back up the flexmonster-config.json
file.
Uninstall the Data Server with the following steps:
Step 1. Stop the Data Server by closing the program.
Step 2. Delete the flexmonster-data-server/ and C:/ProgramData/FlexmonsterDataServer/
folders.
Step 1. Stop the Data Server by closing the program.
Step 2. Delete the flexmonster-data-server/ and ~/.local/share/FlexmonsterDataServer/
(will resolve to /home/[current_user]/.local/share/FlexmonsterDataServer/
) folders.
Step 1. Stop the Data Server by closing the program.
Step 2. Delete the flexmonster-data-server/ and ~/.local/share/FlexmonsterDataServer/
(will resolve to /home/[current_user]/.local/share/FlexmonsterDataServer/
) folders.
You may be interested in the following articles: