[]
ActiveReportsJS is represented on npm with activereports.*
package in the @grapecity
npm scope, where the @grapecity/activereports
represents the package of the library. As with any npm package, you need to have NodeJS (https://nodejs.org/en/) installed on your computer to use it.
The latest release version can be installed from npm by executing the command:
`npm install @grapecity/activereports`
The single @grapecity/activereports package bundles all available modules as:
Use import statements as follows to use ActiveReportsJS modules:
as complete package which imports all modules:
import * as arjs from '@grapecity/activereports';
// or...
import { Viewer, Core, PdfExport} from '@grapecity/activereports';
as explicit modules to reduce the bundle size:
import * as Core from '@grapecity/activereports/core';
import { Viewer } from '@grapecity/activereports/viewer';