I want to download the ABP Framework, pro modules and theme source-code.
Also how can I download the pro Angular NPM packages?
1 Answer(s)
-
3
-
The ABP Framework is an open-source project. You can download the source-code from its GitHub repository
-
Only Business and Enterprise license types are allowed to download source-code
Download the source-code of the PRO and free modules
Method-1: ABP Suite
You can use APB Suite. Click the Modules menu item to find download links for each module. You can also add the module as a NuGet package or as a project reference.
See also https://docs.abp.io/en/commercial/latest/abp-suite/source-code
Method-2: ABP CLI
You can use the ABP CLI to download a module source-code. See how to get source via CLI.
Example usage of the module download via ABP CLI:
abp get-source Volo.Account.Pro
Frequently used module names:
-
Volo.Account
-
Volo.AuditLogging
-
Volo.BackgroundJobs
-
Volo.Blogging
-
Volo.Docs
-
Volo.FeatureManagement
-
Volo.Identity
-
Volo.IdentityServer
-
Volo.PermissionManagement
-
Volo.SettingManagement
-
Volo.TenantManagement
-
Volo.Users
-
Volo.Docs.Admin
-
Volo.Account.Pro
-
Volo.AuditLogging.Ui
-
Volo.Identity.Pro
-
Volo.Identityserver.Ui
-
Volo.LanguageManagement
-
Volo.Saas
-
Volo.EmailManagement
-
Volo.LeptonTheme
LeptonX Theme source-code
To download the source code of the LeptonX Theme
abp get-source Volo.Abp.LeptonXTheme
For the old Lepton Theme source-code, use this code:
abp get-source Volo.LeptonTheme
Angular packages source-code
To download the source-code of the Angular packages, download the corresponding module via
abp get-source
command. After downloading, you will find a folder calledAngular
. This folder contains the source-code of Angular packages. -