Flexmonster Software License Agreement (“Agreement”) has been revised and is effective as of January 8, 2025.
The following modifications were made:
The modified version of Agreement is available here.
Downloading, installing, and/or continuing to use Flexmonster Software after January 8, 2025, constitutes Licensee’s acceptance of the terms and conditions of the modified version of 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 or maintenance after the effective date of these modifications to Agreement, Licensee accepts and agrees to be bound by the terms and conditions of the modified Agreement.
This tutorial will help you integrate Flexmonster with TypeScript.
npm install -g flexmonster-cli
Download the sample project with the flexmonster create command. You can choose a TypeScript or TypeScript + webpack project:
flexmonster create typescript -r
This command downloads the TypeScript project from GitHub and launches it in the browser. To shut down the project from the console, press Ctrl + C
(Control + C
on macOS).
The sample project is located inside the flexmonster-typescript-project/
folder in your current working directory.
If you change the contents of the main.ts
file, recompile the main.js
file using the following command:
npx tsc
flexmonster create typescript webpack -r
This command downloads the TypeScript + webpack project from GitHub and launches it in the browser. To shut down the project from the console, press Ctrl + C
(Control + C
on macOS).
The sample project is located inside the flexmonster-typescript-webpack-project/
folder in your current working directory.
Step 1. For integration with TypeScript, we will need Flexmonster type definitions, which can be found in the flexmonster npm package. Download the package by running the following command inside your project:
flexmonster add js-flexmonster
The command downloads flexmonster to the node_modules/
folder and adds it as an npm dependency to the package.json
file.
Step 2. Add Flexmonster to the types
array in the tsconfig.json
file:
// ...
"types": ["flexmonster"],
// ...
Step 3. Follow the steps from the Embed Flexmonster section to add Flexmonster to your project. Note that you need the Flexmonster CLI or npm tabs.
Step 4. Run your project to see the result.
Here is an example of how Flexmonster integration with TypeScript can be done when the webpack bundler is used:
<!DOCTYPE html>
<html>
<body>
<!-- Create a div container to insert the component -->
<div id="pivotContainer"></div>
<!-- Include main.js file -->
<script src="main.js"></script>
</body>
</html>
import * as Flexmonster from "flexmonster";
import "flexmonster/flexmonster.min.css";
const pivot = new Flexmonster({
container: "pivotContainer",
toolbar: true
});
{
"compilerOptions": {
// Other configs
"types": ["flexmonster"],
// Other configs
}
}
You may be interested in the following articles: