Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
syncfusion avatar

Syncfusion React License

  • 444 installs
  • 3 repo stars
  • Updated July 28, 2026
  • syncfusion/react-ui-components-skills

syncfusion-react-license is an agent skill that guides Syncfusion React license key generation, registration, and troubleshooting for developers who install Syncfusion npm packages and must clear runtime license validati

About

syncfusion-react-license is an agent skill (metadata version 33.1.44) from syncfusion/react-ui-components-skills that documents Syncfusion React licensing end to end. License key validation was introduced in Essential JS2 v20.1.0.47 (2022 Volume 1); all npm-based React apps must register a valid key offline at startup. The skill distinguishes trial (30-day), community (<$1M revenue), and paid licenses; edition-based keys for v31.1.17+ covering 5 editions (UI, Document SDK, PDF Viewer SDK, DOCX Editor SDK, Spreadsheet Editor SDK); and platform-based keys for v30.x and earlier. Registration uses the SYNCFUSION_LICENSE environment variable plus npx syncfusion-license activate, with reference docs for GitHub Actions and Azure Pipelines CI/CD, plus troubleshooting for version mismatch, platform mismatch, and trial-expired errors. Use syncfusion-react-license when a React app shows Syncfusion trial banners or fails CI builds after adding @syncfusion packages.

  • syncfusion-react-license

Syncfusion React License by the numbers

  • 444 all-time installs (skills.sh)
  • +53 installs in the week ending Aug 5, 2026 (Skillselion tracking)
  • Ranked #979 of 4,347 Backend & APIs skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/syncfusion/react-ui-components-skills --skill syncfusion-react-license

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs444
repo stars3
Last updatedJuly 28, 2026
Repositorysyncfusion/react-ui-components-skills

How do you register a Syncfusion React license key?

Use syncfusion-react-license for development tasks

Who is it for?

React developers adding Syncfusion npm UI components who need correct edition-based license keys and CI-safe registration without committing secrets.

Skip if: Projects using only open-source UI libraries, teams deploying exclusively via licensed Syncfusion installers that embed validation, or non-React Syncfusion platforms without React packages.

When should I use this skill?

User asks about Syncfusion React licensing, license keys, trial warnings, SYNCFUSION_LICENSE, npx syncfusion-license activate, or license validation errors.

What you get

Registered Syncfusion license keys, cleared runtime validation warnings, CI environment variables, and resolved version or edition mismatch errors.

  • Registered license key configuration
  • CI environment variable setup

By the numbers

  • Skill metadata version 33.1.44 from Syncfusion Inc
  • License validation required since Syncfusion v20.1.0.47 (2022 Volume 1)
  • v31.1.17+ edition-based licensing covers 5 Syncfusion product editions

Files

SKILL.mdMarkdownGitHub ↗

Syncfusion React Licensing

This skill guides you through Syncfusion React licensing requirements, license key generation, registration methods, and troubleshooting validation errors.

Table of Contents

Licensing Overview

Syncfusion license key validation was introduced in the 2022 Volume 1 release (v20.1.0.47) for Essential JS2 platforms. All React applications referencing Syncfusion packages from npm, CDN, or build must register a valid license key to avoid validation warnings.

Key Licensing Details

License Key vs Unlock Key:

  • License Key: String registered in application code to validate Syncfusion package usage
  • Unlock Key: Used only during Syncfusion installer process
  • ⚠️ Important: License key is NOT the same as installer unlock key

Core Requirements:

  • License key validation introduced in v20.1.0.47+ (2022 Volume 1)
  • License keys are version and platform/edition specific
  • Validation occurs offline (no internet required during runtime)
  • Required when using npm packages or trial installers
  • Not required when using licensed installers

License Types:

  • Trial license: 30-day evaluation period, full functionality, generates trial key, displays warning after expiration
  • Community license: Free for qualifying individuals/organizations (<$1M USD revenue), same functionality as paid license, annual renewal required
  • Paid license: Commercial license for enterprise use, perpetual or subscription-based, technical support included

Edition-Based vs Platform-Based:

  • v31.1.17+ (Edition-based): UI Edition, Document SDK, PDF Viewer SDK, DOCX Editor SDK, Spreadsheet Editor SDK, Enterprise Edition (all editions combined)
  • v30.x.x and earlier (Platform-based): React, Angular, Vue, JavaScript, Blazor, etc.

Build Server Scenarios:

  • Using npm packages: License key required - register NPX command
  • Using trial installer: License key required - trial warnings appear after 30 days
  • Using licensed installer: License key NOT required - embedded license validation included

Offline Validation:

  • No internet connection required during application runtime
  • License validated locally against package metadata at startup
  • Works in air-gapped environments and offline development
  • No external API calls or performance impact

Documentation and Navigation Guide

Generating License Keys

📄 Read: references/license-generation.md

  • Edition-based licensing (v31.1.17+): UI Edition, Document SDK, PDF Viewer SDK, DOCX Editor SDK, Spreadsheet Editor SDK, Enterprise Edition
  • Platform-based licensing (v30.x.x and earlier): React, JavaScript, Angular, etc.
  • Generating keys from License & Downloads page
  • Claim License Key page usage
  • Version and platform specific license key

Registering License Keys

📄 Read: references/license-registration.md

  • Environment variable method: SYNCFUSION_LICENSE
  • CI/CD integration: GitHub Actions, Azure Pipelines
  • Active license, active trial, expired license scenarios

Troubleshooting License Errors

📄 Read: references/licensing-errors.md

  • License key not registered error
  • Invalid key error
  • Trial expired error (30 days)
  • Platform mismatch error
  • Version mismatch error
  • NPX command validation errors

Quick Start

1. Generate License Key

Visit License & Downloads page:

For v31.1.17+ (Edition-based):

  • Select version 31.x.x or higher
  • Select required editions: UI Edition, Document SDK, PDF Viewer SDK, DOCX Editor SDK, Spreadsheet Editor SDK
  • Recommended: Select all 5 editions for Enterprise Edition key
  • Click "Get License Key"

For v30.x.x and earlier (Platform-based):

  • Select version 30.x.x or earlier
  • Select platforms: React, JavaScript, etc.
  • Click "Get License Key"

2. Register License Key in Application

Recommended Method: Use environment variables to register your license key. This prevents accidentally committing license keys to source control.

Step 1: Set the environment variable:

# Windows
setx SYNCFUSION_LICENSE "Your_License_Key_Here"

# Mac/Linux
export SYNCFUSION_LICENSE='Your_License_Key_Here'

Step 2: Activate the license using NPX command:

npx syncfusion-license activate

Step 3: Clear the cache:

# Windows PowerShell
Remove-Item -Recurse -Force node_modules\.cache

# macOS/Linux
rm -rf node_modules/.cache
Note: For alternative license registration methods, kindly refer to the Syncfusion license key registration documentation.

Related skills

How it compares

Pick syncfusion-react-license over generic React setup skills when npm-installed Syncfusion components show trial banners or CI needs SYNCFUSION_LICENSE registration steps.

FAQ

When is a Syncfusion React license key required?

syncfusion-react-license states that any React app referencing Syncfusion packages from npm, CDN, or trial installers must register a valid license key offline at startup. Keys became mandatory starting with v20.1.0.47 in 2022 Volume 1.

How do you register a Syncfusion license without committing secrets?

syncfusion-react-license recommends setting the SYNCFUSION_LICENSE environment variable, running npx syncfusion-license activate, and clearing node_modules/.cache so the key never lands in source control while CI and local builds both validate.

What changed in Syncfusion licensing at v31.1.17?

From v31.1.17 onward, syncfusion-react-license documents edition-based keys across five editions—UI, Document SDK, PDF Viewer SDK, DOCX Editor SDK, and Spreadsheet Editor SDK—instead of older platform-based React-only keys used in v30.x.

Backend & APIsbackendintegrations

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.