Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

su angular 5 con funzione NPM Install - non funziona #96

Open
dewolft opened this issue Jan 9, 2023 · 3 comments
Open

su angular 5 con funzione NPM Install - non funziona #96

dewolft opened this issue Jan 9, 2023 · 3 comments

Comments

@dewolft
Copy link

dewolft commented Jan 9, 2023

Ciao,

ho provato ad installare il modulo con NPM
npm i codice-fiscale-js --save

ho importato la libreria come indicato :
import CodiceFiscale from 'codice-fiscale-js';

ho chiamato la funzione come segue :


  const cf = new CodiceFiscale({
    name: "Enzo",
    surname: "Righi",
    gender: "M",
    day: 24,
    month: 7,
    year: 1957,
    birthplace: "Francia", 
    birthplaceProvincia: "EE"
});

    console.log(cf) ;

ritorna questo errore :
codice_fiscale_js_1.default is not a constructor

Cosa sto sbagliando?

@rollamarble
Copy link

Sto utilizzando Angular 13
e questo codice funziona:

const cf=CodiceFiscale.compute( {
          name: "YYY",
          surname: "XXX",
          gender: "M",
          day: 1,
          month: 7,
          year: 2000,
          birthplace: "Pisa",
          birthplaceProvincia: "PI"  
        });

@dewolft
Copy link
Author

dewolft commented Jan 16, 2023

Da questo errore (su angular 5) : Cannot read properties of undefined (reading 'compute')

@rollamarble
Copy link

rollamarble commented Jan 16, 2023

Prova una versione più vecchia della libreria codicefiscale https://www.npmjs.com/package/codice-fiscale-js?activeTab=versions ma il mio consiglio è di pianificare un aggiornamento del framework angular utilizzato dal tuo progetto perchè la versione 5 di angular credo sia EOL, potresti avere problemi di supporto come in questo caso oppure problematiche di sicurezza.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants