IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Angular Discussion :

[Erreur] Can't bind to 'ngForOf' since it isn't a known property of 'li'.


Sujet :

Angular

  1. #1
    Membre éprouvé
    Profil pro
    Inscrit en
    Janvier 2007
    Messages
    1 716
    Détails du profil
    Informations personnelles :
    Localisation : France, Alpes Maritimes (Provence Alpes Côte d'Azur)

    Informations forums :
    Inscription : Janvier 2007
    Messages : 1 716
    Par défaut [Erreur] Can't bind to 'ngForOf' since it isn't a known property of 'li'.
    Bonsoir


    J'ai l'erreur suivante
    Can't bind to 'ngForOf' since it isn't a known property of 'li'.
    J'ai enleve tout ce que je pouvais et plus rien dans le projet mais toujours l'erreur
    J'ai en Angular12
    app.module
    core.module
    shared.module
    xxcontact.module
    xxcontact.component
    xxcontact.component.html


    Je ne vois pas ou j'ai M..... le CommonModule est bien dans le sous Module ???
    J'avais fait un test dans le app.component d'une premiere version cela fonctionnait, et j'ai un autre bout de code quasi identique sauf pour le routing et lui il est Ok


    Merci de votre aide


    app.module
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    import {CUSTOM_ELEMENTS_SCHEMA, NgModule} from '@angular/core';
    import {BrowserModule} from '@angular/platform-browser';
    import {HttpClientModule} from '@angular/common/http';
    import {AppComponent} from './app.component';
    import {MSharedModule} from './shared/shared.module';
     
    import {TranslateService} from '@ngx-translate/core';
     
    import {MCoreModule} from './core/core.module';
    import {AppRoutingModule} from './app-routing.module';
     
    @NgModule({
      declarations: [
        AppComponent
      ],
      imports: [
        BrowserModule,
        HttpClientModule,
        MCoreModule,
        MSharedModule,
        AppRoutingModule
      ],
      schemas: [ CUSTOM_ELEMENTS_SCHEMA ],
      providers: [],
      bootstrap: [AppComponent]
     
    })
    export class AppModule {
     }
    core.module
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    import {NgModule, Optional, SkipSelf} from '@angular/core';
    import {CommonModule} from '@angular/common';
    import {HttpClientModule} from '@angular/common/http';
     
     
     
    @NgModule({
      declarations: [],
      imports: [
        CommonModule,
        HttpClientModule
        ],
      providers: [
      ]
    })
     
     
    export class MCoreModule {
      constructor( @Optional() @SkipSelf() parentModule: MCoreModule) {
        if (parentModule) {
          throw new Error('CoreModule has already been loaded. You should only import Core modules in the AppModule only.');
        }
      }
     
    }
    shared.module
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    import { NgModule } from '@angular/core';
    import { CommonModule } from '@angular/common';
    import { ReactiveFormsModule } from '@angular/forms';
    import {TranslateModule} from "@ngx-translate/core";
    import {RouterModule} from "@angular/router";
     
    @NgModule({
      imports: [
        CommonModule,
        TranslateModule,
        ReactiveFormsModule
      ],
      declarations: [],
      providers: [],
      exports: [
        CommonModule,
        RouterModule,
        TranslateModule,
        ReactiveFormsModule
      ]
    })
     
    export class MSharedModule { }
    xxcontact.module
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    import { NgModule } from '@angular/core';
    import {HttpClientModule} from '@angular/common/http';
    import {FormsModule} from '@angular/forms';
    import { MSharedModule } from '../../shared/shared.module';
    import { RouterModule, Routes } from '@angular/router';
    import { XxContactComponent } from './xxcontact.component';
     
    const routes: Routes = [{ path: '', component:  XxContactComponent }];
     
    //par rapport a celui qui fonctionne la route est sortie du composant ICI
     
    @NgModule({
      declarations: [
        XxContactComponent
      ],
      imports: [
        HttpClientModule, FormsModule, MSharedModule, RouterModule.forChild(routes)
      ],
     
      exports: [
        ]
    })
     
    export class MXXContactModule { }
    xxcontact.component.ts
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    import { Component } from '@angular/core';
    import { products } from './xxproducts';
     
     
    @Component({
      selector: 'my-app',
      templateUrl: 'xxcontact.component.html'
    })
     
    export class XxContactComponent {
      public gridDataProduct: any[] = products;
    }
    le dernier le html avec le *ngfor xxcontact.html
    Code html : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    <ul>
      <li *ngFor="let g1 of gridDataProduct">
        {{ g1.ProductID }} / {{ g1.ProductName }}
      </li>
    </ul>
    le package.json
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    {
      "name": "from2021SANSKENDO",
      "version": "0.0.0",
      "private": true,
      "dependencies": {
        "@angular/animations": "12.0.2",
        "@angular/common": "12.0.2",
        "@angular/compiler": "12.0.2",
        "@angular/core": "12.0.2",
        "@angular/forms": "12.0.2",
        "@angular/platform-browser": "12.0.2",
        "@angular/platform-browser-dynamic": "12.0.2",
        "@angular/router": "12.0.2",
        "@ng-bootstrap/ng-bootstrap": "9.1.1",
        "@ngx-translate/core": "^13.0.0",
        "@progress/kendo-theme-default": "^4.38.1",
        "bootstrap": "^5.0.1",
        "core-js": "2.6.12",
        "rxjs": "^6.6.7",
        "rxjs-compat": "^6.6.7",
        "tslib": "1.14.1",
        "web-animations-js": "2.3.2",
        "zone.js": "~0.11.4"
      },
      "scripts": {
        "ng": "ng",
        "starto": "ng serve",
        "start": "ng serve --port 4402",
        "build": "ng build",
        "test": "ng test",
        "lint": "ng lint",
        "e2e": "ng e2e"
      },
      "devDependencies": {
        "@angular-devkit/build-angular": "~12.0.1",
        "@angular/cli": "~12.0.1",
        "@angular/compiler-cli": "~12.0.1",
        "@angular/localize": "^12.0.1",
        "@types/jasmine": "~3.6.0",
        "@types/node": "^12.11.1",
        "codelyzer": "^6.0.0",
        "jasmine-core": "~3.6.0",
        "jasmine-spec-reporter": "~5.0.0",
        "karma": "~6.3.2",
        "karma-chrome-launcher": "~3.1.0",
        "karma-coverage": "~2.0.3",
        "karma-jasmine": "~4.0.0",
        "karma-jasmine-html-reporter": "^1.5.0",
        "protractor": "~7.0.0",
        "ts-node": "~8.3.0",
        "tslint": "~6.1.0",
        "typescript": "~4.2.4"
      }
    }

  2. #2
    Membre très actif
    Homme Profil pro
    Développeur Web
    Inscrit en
    Janvier 2019
    Messages
    707
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 43
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Janvier 2019
    Messages : 707
    Par défaut
    au lieu de :

    Code html : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    <ul>
      <li *ngFor="let g1 of gridDataProduct">
        {{ g1.ProductID }} / {{ g1.ProductName }}
      </li>
    </ul>


    met :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    {{gridDataProduct|json}}
    ça donne quoi ?

  3. #3
    Membre éprouvé
    Profil pro
    Inscrit en
    Janvier 2007
    Messages
    1 716
    Détails du profil
    Informations personnelles :
    Localisation : France, Alpes Maritimes (Provence Alpes Côte d'Azur)

    Informations forums :
    Inscription : Janvier 2007
    Messages : 1 716
    Par défaut
    AIE
    core.js:6456 ERROR Error: Uncaught (in promise): Error: NG0302: The pipe 'json' could not be found!. Find more at https://angular.io/errors/NG0302
    Le CommonModule est dans mon MSharedModule importé dans mon module MXXContactModule qui utilise mon component et dans mon package.json j'ai bien @angular/common

  4. #4
    Membre très actif
    Homme Profil pro
    Développeur Web
    Inscrit en
    Janvier 2019
    Messages
    707
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 43
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Janvier 2019
    Messages : 707
    Par défaut
    tu as du supprimer des packages ou des fichiers dans node_modules disparaissent ....

    (1)
    supprime le dossier node_module
    ensuite
    npm i


    (2)
    si ça marche pas

    recréer un projet angular
    ng new .........
    et transfert le dossier /src

  5. #5
    Membre éprouvé
    Profil pro
    Inscrit en
    Janvier 2007
    Messages
    1 716
    Détails du profil
    Informations personnelles :
    Localisation : France, Alpes Maritimes (Provence Alpes Côte d'Azur)

    Informations forums :
    Inscription : Janvier 2007
    Messages : 1 716
    Par défaut
    Bjr
    Même avec un nouveau projet j'ai le soucis
    J'ai deux versions d'un nouveau projet en Angular12, l'une ok et l'autre un peu plus avancé, il ne trouve plus la librairie
    Dans mon module shared, j'ai déclaré bcp de librairie Kendo, mon pb est peut etre la

  6. #6
    Membre très actif
    Homme Profil pro
    Développeur Web
    Inscrit en
    Janvier 2019
    Messages
    707
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 43
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Janvier 2019
    Messages : 707
    Par défaut
    si tu n'a pas de raison particuliere privilégie angular material

    sinon copie de projet
    npm remove ...le package kendo....
    supprimer le code qui l'utilise
    et constate si pb ou pas ?

  7. #7
    Membre éprouvé
    Profil pro
    Inscrit en
    Janvier 2007
    Messages
    1 716
    Détails du profil
    Informations personnelles :
    Localisation : France, Alpes Maritimes (Provence Alpes Côte d'Azur)

    Informations forums :
    Inscription : Janvier 2007
    Messages : 1 716
    Par défaut
    Bonjour

    Kendo, m'est imposé.
    J'ai une autre erreur mais plus logique celle ci, par contre comme je suis en Angular12, je n'ai pas remis pour l'instant les packages suivant :
    "@ng-bootstrap/ng-bootstrap": "9.1.1",
    "@ngx-translate/core": "13.0.0",
    "@ngx-translate/http-loader": "6.0.0",
    je soupconne l'un de ces trois la

  8. #8
    Membre très actif
    Homme Profil pro
    Développeur Web
    Inscrit en
    Janvier 2019
    Messages
    707
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 43
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Janvier 2019
    Messages : 707
    Par défaut
    tous tes modules disposent au moins de ces modules ?

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    import { NgModule } from '@angular/core';
    import { CommonModule } from '@angular/common';
    ...
     imports: [CommonModule

  9. #9
    Membre éprouvé
    Profil pro
    Inscrit en
    Janvier 2007
    Messages
    1 716
    Détails du profil
    Informations personnelles :
    Localisation : France, Alpes Maritimes (Provence Alpes Côte d'Azur)

    Informations forums :
    Inscription : Janvier 2007
    Messages : 1 716
    Par défaut
    le CommonModule est dans le SharedModule importé par chacun de mes modules

  10. #10
    Membre éprouvé
    Profil pro
    Inscrit en
    Janvier 2007
    Messages
    1 716
    Détails du profil
    Informations personnelles :
    Localisation : France, Alpes Maritimes (Provence Alpes Côte d'Azur)

    Informations forums :
    Inscription : Janvier 2007
    Messages : 1 716
    Par défaut
    Ce m'a interpelle sur ces 3 packages par rapport a Anuglar12
    C'est ce type de message
    Package "@ng-bootstrap/ng-bootstrap" has an incompatible peer dependency to "@angular/common" (requires "^5.0.2" (extended), would install "12.0.2").
    Package "@ng-bootstrap/ng-bootstrap" has an incompatible peer dependency to "@angular/core" (requires "^5.0.2" (extended), would install "12.0.2").
    Package "@ng-bootstrap/ng-bootstrap" has an incompatible peer dependency to "@angular/forms" (requires "^5.0.2" (extended), would install "12.0.2").

  11. #11
    Membre très actif
    Homme Profil pro
    Développeur Web
    Inscrit en
    Janvier 2019
    Messages
    707
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 43
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Janvier 2019
    Messages : 707
    Par défaut
    ça donne quoi ça ?

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    npm install -g npm-check
    npm-check

    si ton projet n'est pas secret, tu le met sur github que je regarde
    ou une version épuré !

  12. #12
    Membre éprouvé
    Profil pro
    Inscrit en
    Janvier 2007
    Messages
    1 716
    Détails du profil
    Informations personnelles :
    Localisation : France, Alpes Maritimes (Provence Alpes Côte d'Azur)

    Informations forums :
    Inscription : Janvier 2007
    Messages : 1 716
    Par défaut
    Code x : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    @angular/animations                    😎  PATCH UP  Patch update available. https://github.com/angular/angular#readme
                                                        npm install --save @angular/animations@12.0.2 to go from 12.0.1 to 12.0.2
                                           😕  NOTUSED?  Still using @angular/animations?
                                                        Depcheck did not find code similar to require('@angular/animations') or import from '@angular/animations'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @angular/animations
    
    @angular/common                        😎  PATCH UP  Patch update available. https://github.com/angular/angular#readme
                                                        npm install --save @angular/common@12.0.2 to go from 12.0.1 to 12.0.2
                                           😕  NOTUSED?  Still using @angular/common?
                                                        Depcheck did not find code similar to require('@angular/common') or import from '@angular/common'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @angular/common
    
    @angular/compiler                      😎  PATCH UP  Patch update available. https://github.com/angular/angular#readme
                                                        npm install --save @angular/compiler@12.0.2 to go from 12.0.1 to 12.0.2
                                           😕  NOTUSED?  Still using @angular/compiler?
                                                        Depcheck did not find code similar to require('@angular/compiler') or import from '@angular/compiler'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @angular/compiler
    
    @angular/core                          😎  PATCH UP  Patch update available. https://github.com/angular/angular#readme
                                                        npm install --save @angular/core@12.0.2 to go from 12.0.1 to 12.0.2
                                           😕  NOTUSED?  Still using @angular/core?
                                                        Depcheck did not find code similar to require('@angular/core') or import from '@angular/core'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @angular/core
    
    @angular/forms                         😎  PATCH UP  Patch update available. https://github.com/angular/angular#readme
                                                        npm install --save @angular/forms@12.0.2 to go from 12.0.1 to 12.0.2                                       😕  NOTUSED?  Still using @angular/forms?
                                                        Depcheck did not find code similar to require('@angular/forms') or import from '@angular/forms'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @angular/forms
    
    @angular/localize                      😎  PATCH UP  Patch update available. https://github.com/angular/angular#readme
                                                        npm install --save @angular/localize@12.0.2 to go from 12.0.1 to 12.0.2
    
    @angular/platform-browser              😎  PATCH UP  Patch update available. https://github.com/angular/angular#readme
                                                        npm install --save @angular/platform-browser@12.0.2 to go from 12.0.1 to 12.0.2
                                           😕  NOTUSED?  Still using @angular/platform-browser?
                                                        Depcheck did not find code similar to require('@angular/platform-browser') or import from '@angular/platform-browser'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @angular/platform-browser
    
    @angular/platform-browser-dynamic      😎  PATCH UP  Patch update available. https://github.com/angular/angular#readme
                                                        npm install --save @angular/platform-browser-dynamic@12.0.2 to go from 12.0.1 to 12.0.2
                                           😕  NOTUSED?  Still using @angular/platform-browser-dynamic?
                                                        Depcheck did not find code similar to require('@angular/platform-browser-dynamic') or import from '@angular/platform-browser-dynamic'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @angular/platform-browser-dynamic
    
    @angular/router                        😎  PATCH UP  Patch update available. https://github.com/angular/angular/tree/master/packages/router
                                                        npm install --save @angular/router@12.0.2 to go from 12.0.1 to 12.0.2
                                           😕  NOTUSED?  Still using @angular/router?
                                                        Depcheck did not find code similar to require('@angular/router') or import from '@angular/router'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @angular/router
    
    @ng-bootstrap/ng-bootstrap             😕  NOTUSED?  Still using @ng-bootstrap/ng-bootstrap?
                                                        Depcheck did not find code similar to require('@ng-bootstrap/ng-bootstrap') or import from '@ng-bootstrap/ng-bootstrap'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @ng-bootstrap/ng-bootstrap
    
    @ngx-translate/core                    😕  NOTUSED?  Still using @ngx-translate/core?
                                                        Depcheck did not find code similar to require('@ngx-translate/core') or import from '@ngx-translate/core'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @ngx-translate/core
    
    @ngx-translate/http-loader             😕  NOTUSED?  Still using @ngx-translate/http-loader?
                                                        Depcheck did not find code similar to require('@ngx-translate/http-loader') or import from '@ngx-translate/http-loader'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @ngx-translate/http-loader
    
    @progress/kendo-angular-buttons        😕  NOTUSED?  Still using @progress/kendo-angular-buttons?
                                                        Depcheck did not find code similar to require('@progress/kendo-angular-buttons') or import from '@progress/kendo-angular-buttons'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @progress/kendo-angular-buttons
    
    @progress/kendo-angular-charts         😕  NOTUSED?  Still using @progress/kendo-angular-charts?
                                                        Depcheck did not find code similar to require('@progress/kendo-angular-charts') or import from '@progress/kendo-angular-charts'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @progress/kendo-angular-charts
    
    @progress/kendo-angular-common         😕  NOTUSED?  Still using @progress/kendo-angular-common?
                                                        Depcheck did not find code similar to require('@progress/kendo-angular-common') or import from '@progress/kendo-angular-common'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @progress/kendo-angular-common
    
    @progress/kendo-angular-dateinputs     😕  NOTUSED?  Still using @progress/kendo-angular-dateinputs?
                                                        Depcheck did not find code similar to require('@progress/kendo-angular-dateinputs') or import from '@progress/kendo-angular-dateinputs'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @progress/kendo-angular-dateinputs
    
    @progress/kendo-angular-dialog         😕  NOTUSED?  Still using @progress/kendo-angular-dialog?
                                                        Depcheck did not find code similar to require('@progress/kendo-angular-dialog') or import from '@progress/kendo-angular-dialog'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @progress/kendo-angular-dialog
    
    @progress/kendo-angular-dropdowns      😎  MINOR UP  Minor update available. https://www.telerik.com/kendo-angular-ui/components/
                                                        npm install --save @progress/kendo-angular-dropdowns@5.3.0 to go from 5.2.0 to 5.3.0
                                           😕  NOTUSED?  Still using @progress/kendo-angular-dropdowns?
                                                        Depcheck did not find code similar to require('@progress/kendo-angular-dropdowns') or import from '@progress/kendo-angular-dropdowns'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @progress/kendo-angular-dropdowns
    
    @progress/kendo-angular-excel-export   😕  NOTUSED?  Still using @progress/kendo-angular-excel-export?
                                                        Depcheck did not find code similar to require('@progress/kendo-angular-excel-export') or import from '@progress/kendo-angular-excel-export'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @progress/kendo-angular-excel-export
    
    @progress/kendo-angular-grid           😍  UPDATE!   Your local install is out of date. https://www.telerik.com/kendo-angular-ui/components/
                                                        npm install --save @progress/kendo-angular-grid@5.1.3 to go from 5.1.2 to 5.1.3
                                           😕  NOTUSED?  Still using @progress/kendo-angular-grid?
                                                        Depcheck did not find code similar to require('@progress/kendo-angular-grid') or import from '@progress/kendo-angular-grid'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @progress/kendo-angular-grid
    
    @progress/kendo-angular-icons          😕  NOTUSED?  Still using @progress/kendo-angular-icons?
                                                        Depcheck did not find code similar to require('@progress/kendo-angular-icons') or import from '@progress/kendo-angular-icons'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @progress/kendo-angular-icons
    
    @progress/kendo-angular-inputs         😎  PATCH UP  Patch update available. https://www.telerik.com/kendo-angular-ui/components/
                                                        npm install --save @progress/kendo-angular-inputs@7.2.2 to go from 7.2.1 to 7.2.2
                                           😕  NOTUSED?  Still using @progress/kendo-angular-inputs?
                                                        Depcheck did not find code similar to require('@progress/kendo-angular-inputs') or import from '@progress/kendo-angular-inputs'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @progress/kendo-angular-inputs
    
    @progress/kendo-angular-intl           😕  NOTUSED?  Still using @progress/kendo-angular-intl?
                                                        Depcheck did not find code similar to require('@progress/kendo-angular-intl') or import from '@progress/kendo-angular-intl'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @progress/kendo-angular-intl
    
    @progress/kendo-angular-l10n           😕  NOTUSED?  Still using @progress/kendo-angular-l10n?
                                                        Depcheck did not find code similar to require('@progress/kendo-angular-l10n') or import from '@progress/kendo-angular-l10n'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @progress/kendo-angular-l10n
    
    @progress/kendo-angular-label          😕  NOTUSED?  Still using @progress/kendo-angular-label?
                                                        Depcheck did not find code similar to require('@progress/kendo-angular-label') or import from '@progress/kendo-angular-label'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @progress/kendo-angular-label
    
    @progress/kendo-angular-layout         😕  NOTUSED?  Still using @progress/kendo-angular-layout?
                                                        Depcheck did not find code similar to require('@progress/kendo-angular-layout') or import from '@progress/kendo-angular-layout'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @progress/kendo-angular-layout
    
    @progress/kendo-angular-listview       😕  NOTUSED?  Still using @progress/kendo-angular-listview?
                                                        Depcheck did not find code similar to require('@progress/kendo-angular-listview') or import from '@progress/kendo-angular-listview'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @progress/kendo-angular-listview
    
    @progress/kendo-angular-menu           😕  NOTUSED?  Still using @progress/kendo-angular-menu?
                                                        Depcheck did not find code similar to require('@progress/kendo-angular-menu') or import from '@progress/kendo-angular-menu'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @progress/kendo-angular-menu
    
    @progress/kendo-angular-pager          😕  NOTUSED?  Still using @progress/kendo-angular-pager?
                                                        Depcheck did not find code similar to require('@progress/kendo-angular-pager') or import from '@progress/kendo-angular-pager'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @progress/kendo-angular-pager
    
    @progress/kendo-angular-pdf-export     😕  NOTUSED?  Still using @progress/kendo-angular-pdf-export?
                                                        Depcheck did not find code similar to require('@progress/kendo-angular-pdf-export') or import from '@progress/kendo-angular-pdf-export'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @progress/kendo-angular-pdf-export
    
    @progress/kendo-angular-popup          😕  NOTUSED?  Still using @progress/kendo-angular-popup?
                                                        Depcheck did not find code similar to require('@progress/kendo-angular-popup') or import from '@progress/kendo-angular-popup'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @progress/kendo-angular-popup
    
    @progress/kendo-angular-progressbar    😕  NOTUSED?  Still using @progress/kendo-angular-progressbar?
                                                        Depcheck did not find code similar to require('@progress/kendo-angular-progressbar') or import from '@progress/kendo-angular-progressbar'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @progress/kendo-angular-progressbar
    
    @progress/kendo-angular-toolbar        😕  NOTUSED?  Still using @progress/kendo-angular-toolbar?
                                                        Depcheck did not find code similar to require('@progress/kendo-angular-toolbar') or import from '@progress/kendo-angular-toolbar'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @progress/kendo-angular-toolbar
    
    @progress/kendo-angular-treeview       😕  NOTUSED?  Still using @progress/kendo-angular-treeview?
                                                        Depcheck did not find code similar to require('@progress/kendo-angular-treeview') or import from '@progress/kendo-angular-treeview'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @progress/kendo-angular-treeview
    
    @progress/kendo-angular-upload         😕  NOTUSED?  Still using @progress/kendo-angular-upload?
                                                        Depcheck did not find code similar to require('@progress/kendo-angular-upload') or import from '@progress/kendo-angular-upload'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @progress/kendo-angular-upload
    
    @progress/kendo-data-query             😕  NOTUSED?  Still using @progress/kendo-data-query?
                                                        Depcheck did not find code similar to require('@progress/kendo-data-query') or import from '@progress/kendo-data-query'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @progress/kendo-data-query
    
    @progress/kendo-drawing                😕  NOTUSED?  Still using @progress/kendo-drawing?
                                                        Depcheck did not find code similar to require('@progress/kendo-drawing') or import from '@progress/kendo-drawing'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @progress/kendo-drawing
    @progress/kendo-licensing              😕  NOTUSED?  Still using @progress/kendo-licensing?
                                                        Depcheck did not find code similar to require('@progress/kendo-licensing') or import from '@progress/kendo-licensing'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @progress/kendo-licensing
    
    @progress/kendo-svg-icons              😕  NOTUSED?  Still using @progress/kendo-svg-icons?
                                                        Depcheck did not find code similar to require('@progress/kendo-svg-icons') or import from '@progress/kendo-svg-icons'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @progress/kendo-svg-icons
    
    @progress/kendo-theme-bootstrap        😕  NOTUSED?  Still using @progress/kendo-theme-bootstrap?
                                                        Depcheck did not find code similar to require('@progress/kendo-theme-bootstrap') or import from '@progress/kendo-theme-bootstrap'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @progress/kendo-theme-bootstrap
    
    @progress/kendo-theme-default          😕  NOTUSED?  Still using @progress/kendo-theme-default?
                                                        Depcheck did not find code similar to require('@progress/kendo-theme-default') or import from '@progress/kendo-theme-default'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save @progress/kendo-theme-default
    
    bootstrap                              😕  NOTUSED?  Still using bootstrap?
                                                        Depcheck did not find code similar to require('bootstrap') or import from 'bootstrap'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save bootstrap
    
    dwt                                    😎  MAJOR UP  Major update available. https://www.dynamsoft.com/Products/WebTWAIN_Overview.aspx
                                                        npm install --save dwt@17.0.2 to go from 16.2.4 to 17.0.2
                                           😕  NOTUSED?  Still using dwt?
                                                        Depcheck did not find code similar to require('dwt') or import from 'dwt'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save dwt
    
    hammerjs                               😕  NOTUSED?  Still using hammerjs?
                                                        Depcheck did not find code similar to require('hammerjs') or import from 'hammerjs'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save hammerjs
    
    ngx-logger                             😎  PATCH UP  Patch update available. https://github.com/dbfannin/ngx-logger#readme
                                                        npm install --save ngx-logger@4.2.2 to go from 4.2.1 to 4.2.2
                                           😕  NOTUSED?  Still using ngx-logger?
                                                        Depcheck did not find code similar to require('ngx-logger') or import from 'ngx-logger'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save ngx-logger
    
    rxjs                                   😎  MAJOR UP  Major update available. https://rxjs.dev
                                                        npm install --save rxjs@7.1.0 to go from 6.6.7 to 7.1.0
                                           😕  NOTUSED?  Still using rxjs?
                                                        Depcheck did not find code similar to require('rxjs') or import from 'rxjs'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save rxjs
    
    tslib                                  😕  NOTUSED?  Still using tslib?
                                                        Depcheck did not find code similar to require('tslib') or import from 'tslib'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save tslib
    
    zone.js                                😕  NOTUSED?  Still using zone.js?
                                                        Depcheck did not find code similar to require('zone.js') or import from 'zone.js'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save zone.js
    
    @angular-devkit/build-angular          😎  PATCH UP  Patch update available. https://github.com/angular/angular-cli
                                                        npm install --save-dev @angular-devkit/build-angular@12.0.2 to go from 12.0.1 to 12.0.2
    
    @angular/cli                           😎  PATCH UP  Patch update available. https://github.com/angular/angular-cli
                                                        npm install --save-dev @angular/cli@12.0.2 to go from 12.0.1 to 12.0.2
    
    @angular/compiler-cli                  😎  PATCH UP  Patch update available. https://github.com/angular/angular/tree/master/packages/compiler-cli
                                                        npm install --save-dev @angular/compiler-cli@12.0.2 to go from 12.0.1 to 12.0.2
    
    @types/jasmine                         😍  UPDATE!   Your local install is out of date. https://github.com/DefinitelyTyped/DefinitelyTyped
                                                        npm install --save-dev @types/jasmine@3.7.6 to go from 3.7.4 to 3.7.6
    
    @types/node                            😎  MAJOR UP  Major update available. https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node
                                                        npm install --save-dev @types/node@15.6.2 to go from 12.20.13 to 15.6.2
    
    codelyzer                              😕  NOTUSED?  Still using codelyzer?
                                                        Depcheck did not find code similar to require('codelyzer') or import from 'codelyzer'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save-dev codelyzer
    
    concurrently                           😎  MAJOR UP  Major update available. https://github.com/kimmobrunfeldt/concurrently#readme
                                                        npm install --save-dev concurrently@6.2.0 to go from 3.5.1 to 6.2.0
    
    cypress                                😎  MAJOR UP  Major update available. https://github.com/cypress-io/cypress
                                                        npm install --save-dev cypress@7.4.0 to go from 6.9.1 to 7.4.0
                                           😕  NOTUSED?  Still using cypress?
                                                        Depcheck did not find code similar to require('cypress') or import from 'cypress'.
                                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                                        Use --skip-unused to skip this check.
                                                        To remove this package: npm uninstall --save-dev cypress
    
    jasmine-core                           😎  MINOR UP  Minor update available. https://jasmine.github.io
                                                        npm install --save-dev jasmine-core@3.7.1 to go from 3.6.0 to 3.7.1
    
    jasmine-spec-reporter                  😎  MAJOR UP  Major update available. https://github.com/bcaudan/jasmine-spec-reporter
                                                        npm install --save-dev jasmine-spec-reporter@7.0.0 to go from 5.0.2 to 7.0.0
    
    karma                                  😍  UPDATE!   Your local install is out of date. https://karma-runner.github.io/
                                                        npm install --save-dev karma@6.3.3 to go from 6.3.2 to 6.3.3
    
    ts-node                                😎  MAJOR UP  Major update available. https://typestrong.org/ts-node
                                                        npm install --save-dev ts-node@10.0.0 to go from 8.3.0 to 10.0.0
    
    typescript                             😎  MINOR UP  Minor update available. https://www.typescriptlang.org/
                                                        npm install --save-dev typescript@4.3.2 to go from 4.2.4 to 4.3.2
    
    Use npm-check -u for interactive update.

  13. #13
    Membre très actif
    Homme Profil pro
    Développeur Web
    Inscrit en
    Janvier 2019
    Messages
    707
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 43
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Janvier 2019
    Messages : 707
    Par défaut
    désolé, je ne sais pas.
    si tu pouvais mettre sur git une version épuré avec l'erreur
    je pourrais regarder mais comme ça, c'est impossible

  14. #14
    Membre éprouvé
    Profil pro
    Inscrit en
    Janvier 2007
    Messages
    1 716
    Détails du profil
    Informations personnelles :
    Localisation : France, Alpes Maritimes (Provence Alpes Côte d'Azur)

    Informations forums :
    Inscription : Janvier 2007
    Messages : 1 716
    Par défaut
    Bonjour Merci pour tes réponses

    Cela fonctione sur ce point, je vais creer un ticket pour un autre soucis, mais c'est risqué de mettre cela sur le git vu la nature du projet

  15. #15
    Membre très actif
    Homme Profil pro
    Développeur Web
    Inscrit en
    Janvier 2019
    Messages
    707
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 43
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Janvier 2019
    Messages : 707
    Par défaut
    une version épurée donc avec le moins de fonctionnalité possible, juste pour reproduire l'erreur
    je sais, c'est du travail mais je ne vois pas comment t'aider comme ça sans pouvoir voir de moi meme...

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. [Erreur] Can't bind to 'formGroup'
    Par olivier252 dans le forum Angular
    Réponses: 4
    Dernier message: 16/02/2021, 15h43
  2. Can't bind to 'ngForOf' since it isn't a known.
    Par ricobye dans le forum Angular
    Réponses: 22
    Dernier message: 15/08/2020, 13h54
  3. Réponses: 1
    Dernier message: 18/12/2018, 14h17
  4. Erreur "Can't bind to local 8623 for debugger"
    Par kapac dans le forum Android
    Réponses: 0
    Dernier message: 06/11/2015, 13h12
  5. Net::SSH::Perl Can't bind socket to port 1023: Adresse déjà utilisée
    Par sohnic dans le forum Programmation et administration système
    Réponses: 2
    Dernier message: 27/11/2006, 21h32

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo