skip to Main Content

I want to build todo list with react js, but when i install react icons, i got some error
i’m using install npm install react-icons --save . Is that wrong?

Can i get some alternate to solved this code?
this is my error

PS C:xampphtdocsTodoReactJStodoreactjs> npm install react-icons --save
npm WARN @apideck/[email protected] requires a peer of ajv@>=8 but none is installed. You must install peer dependencies yourself.
npm WARN [email protected] requires a peer of typescript@>= 2.7 but none is installed. You must install peer dependencies yourself.
npm WARN [email protected] requires a peer of typescript@>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta but none is installed. You must install peer dependencies yourself.
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modulesfsevents):
32","arch":"x64"})

+ [email protected]
updated 1 package and audited 1501 packages in 21.147s

236 packages are looking for funding
  run `npm fund` for details

found 1 high severity vulnerability
  run `npm audit fix` to fix them, or `npm audit` for details

2

Answers


  1. I think this is not an error, just some warnings. Did you try to use icons?

    Login or Signup to reply.
  2. It is not an error. These warnings are due to the dependencies conflict, you can’t do anything much about it, as there is a big dependency tree that could only be fixed from the package manager intervention.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search