Migrate from semantic-ui to fomantic-ui?

561 Views Asked by At

Any recommendations on how to migrate an existing Node project from using Semantic-UI to Fomantic-UI? I know Fomantic-UI is a fork of Semantic-UI and backward compatible, so I'm wondering if I can simply run:

  • npm remove semantic-ui
  • npm install fomantic-ui

Would I need do make any updates to the existing /semantic directory?

Thanks!

1

There are 1 best solutions below

4
Syed Khizaruddin On BEST ANSWER

npm uninstall package_name

this is the npm code to uninstall or remove a package

to install it is:

npm install package_name

in your case it will be

npm uninstall semantic-ui

npm install fomantic-ui