ESM:
import * as esriNS from "@arcgis/core/kernel.js";
CDN:
const esriNS = await $arcgis.import("@arcgis/core/kernel.js");
Object:
@arcgis/core/kernel
Since: ArcGIS Maps SDK for JavaScript 4.0
Utility for retrieving the current or next version of the SDK.
Property Overview
Name | Type | Summary | Object |
---|---|---|---|
Current full version of the ArcGIS Maps SDK for JavaScript: | kernel | ||
Current | kernel |
Property Details
-
fullVersion
fullVersion Stringreadonly
Since: ArcGIS Maps SDK for JavaScript 4.27kernel since 4.0, fullVersion added at 4.27. -
Current full version of the ArcGIS Maps SDK for JavaScript:
major.minor.patch
ormajor.minor.0-next.<date>
.const esriNS = await $arcgis.import("@arcgis/core/kernel.js"); console.log(esriNS.fullVersion); // e.g. "4.33.0" or "4.33.0-next.20250314"
-
version
version Stringreadonly
-
Current
major.minor
version of the ArcGIS Maps SDK for JavaScript.const esriNS = await $arcgis.import("@arcgis/core/kernel.js"); console.log(esriNS.version); // e.g. "4.33"