How to check if Angular application running in Production or Development mode

前端 未结 6 605
挽巷
挽巷 2020-12-07 17:27

This seems an easy one, but I couldn\'t find any solution.

So, how do I check if my app is running in production mode or dev mode?

相关标签:
6条回答
  • 2020-12-07 17:38

    Simply check the production variable present in the environment file, it will be true for production mode and false for development.

    import { environment } from 'src/environments/environment';
    
    if (environment.production) {
      // for production
    } else {
      // for development
    }
    
    0 讨论(0)
  • 2020-12-07 17:41

    Per the Angular Deployment guide at https://angular.io/guide/deployment#enable-production-mode:

    Building for production (or appending the --environment=prod flag) enables production mode Look at the CLI-generated main.ts to see how this works.

    main.ts has the following:

    import { environment } from './environments/environment';
    
    if (environment.production) {
      enableProdMode();
    }
    

    So check environment.production to see if you are in production.

    Most likely you do NOT want to call isDevMode(). Per the Angular API documentation at https://angular.io/api/core/isDevMode:

    After called once, the value is locked and won't change any more... By default, this is true, unless a user calls enableProdMode before calling this.

    I've found that calling isDevMode() from an ng build --prod build always returns true and always locks you into running in dev mode. Instead, check environment.production to see if you are in production. Then you will stay in production mode.

    0 讨论(0)
  • 2020-12-07 17:46

    You should be careful that you check the return value of the isDevMode() function.

    My setup was failing because i was checking for existence: if (isDevMode) was always true, even in production because i declared it with import { isDevMode } from '@angular/core';.

    if (isDevMode()) returned false correctly.

    0 讨论(0)
  • 2020-12-07 17:48
    import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'
    import { enableProdMode } from '@angular/core';
    import { AppModule } from './app.module'
    
    
    platformBrowserDynamic().bootstrapModule(AppModule);
    enableProdMode();
    

    This was my code, so I got the same error. I just interchanged line 3 and 4. Then the issue is fixed. So before bootstrapping module we should enable --prod mode.

    The correct one can be put in this way,

    enableProdMode()
    platformBrowserDynamic().bootstrapModule(AppModule);
    
    0 讨论(0)
  • 2020-12-07 17:53

    it depends on what you are asking...

    If you want to know the mode of Angular, as @yurzui said, you need to call { isDevMode } from @angular/core but it can return false only if you call enableProdMode before it.

    If you want to know the build environment, in other words, if your app is running minified or not, you need to set a build variable in your build system... Using Webpack, for example, you should have a look at definePlugin.

    https://webpack.github.io/docs/list-of-plugins.html#defineplugin

    new webpack.DefinePlugin({
      ENV_PRODUCTION: !!process.env.NODE_ENV
    });
    
    0 讨论(0)
  • 2020-12-07 17:55

    You can use this function isDevMode

    import { isDevMode } from '@angular/core';
    
    ...
    export class AppComponent { 
      constructor() {
        console.log(isDevMode());
      }
    }
    

    One note: be carefull with this function

    if(isDevMode()) {
      enableProdMode();
    }
    

    You will get

    Error: Cannot enable prod mode after platform setup

    • https://github.com/angular/angular/blob/2.0.0/modules/%40angular/core/src/application_ref.ts#L58

    Other options

    environment variable

    import { environment } from 'src/environments/environment';
    
    if (environment.production) {
      //
    }
    

    injected by webpack process.env.NODE_ENV variable

    declare let process: any;
    const env = process.env.NODE_ENV;
    
    if (env  === 'production') {
      //
    }
    
    0 讨论(0)
提交回复
热议问题