Search code examples
node.jssemantic-uifomantic-ui

Migrate from semantic-ui to fomantic-ui?


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!


Solution

  • 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