Open Closed

http://localhost:4200/ cannot get error #9921


User avatar
1
yazilim.ithinka created
  • Template: microservice
  • Created ABP Studio Version: 1.3.0
  • Current ABP Studio Version: 1.3.0
  • Multi-Tenancy: Yes
  • UI Framework: angular
  • Theme: leptonx
  • Theme Style: system
  • Theme Menu Placement: side
  • Run Install Libs: Yes
  • Database Provider: ef
  • Database Management System: postgresql
  • Mobile Framework: none
  • Public Website: Yes
  • Social Login: Yes
  • Include Tests: Yes
  • Dynamic Localization: Yes
  • Kubernetes Configuration: Yes
  • Grafana Dashboard: Yes
  • Use Local References: No
  • Aspire: No
  • Optional Modules:
    • GDPR
    • TextTemplateManagement
    • AuditLogging
    • OpenIddictAdmin
  • Selected Languages: English, Turkish
  • Default Language: English
  • Create Command: abp new AbpSolution2 -t microservice --ui-framework angular --database-provider ef --database-management-system postgresql --theme leptonx --skip-migrator --public-website --without-cms-kit --dont-run-bundling -no-file-management -no-language-management

Hello, today I created a new project, but I got an error again. Please review this problem and fix the errors in this version. Best regards.


3 Answer(s)
  • User Avatar
    -1
    AI-Bot created
    Support Team ABP Agent
    • The error "Cannot GET /" at http://localhost:4200/ and the "Installing client side libraries" task failing indicate that the Angular frontend did not start because the required client-side libraries were not installed successfully.
    • This is a common issue if the dependencies were not installed correctly, often due to problems with npm. The recommended and supported way for ABP Angular projects is to use Yarn instead of npm.

    Solution Steps:

    1. Open a terminal in your Angular project directory (e.g., apps/AbpSolution2.Angular).
    2. Make sure Yarn is installed globally:
    npm install -g yarn
    
    1. Delete the node_modules folder and any package-lock.json file if present:
    rm -rf node_modules package-lock.json
    
    1. Run the ABP command to install libraries using Yarn:
    abp install-libs
    
    • This will use Yarn to install all required dependencies.
    1. After successful installation, start the Angular application:
    yarn start
    

    or

    npm start
    
    1. Now, visit http://localhost:4200/ in your browser. The Angular UI should load correctly.

    If you are using a tiered/microservice solution, make sure all required backend services (IdentityServer, API Host, Gateways) are running before starting the Angular app.

    References:


    This response was generated by AI. If it didn’t solve your problem, feel free to post a new answer — our support team will jump in to help you soon.

  • User Avatar
    1
    maliming created
    Support Team Fullstack Developer

    Thanks. We will fix it asap.

    Your ticket has been refunded.

  • User Avatar
    0
    maliming created
    Support Team Fullstack Developer

    hi

    The solution: https://abp.io/support/questions/9924/Angular---Error-occurs-for-well-knownappspecificcomchromedevtoolsjson-request-on-Windows#answer-3a1c8917-86dd-2131-9225-1204dac407f2

Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.0.0-preview. Updated on September 23, 2025, 10:47