Forrest logo
back to the ionic tool

ionic:tldr:2d261

ionic: Show versions of Ionic, Cordova, environment, etc..
$ ionic info
try on your machine

The ionic info command is used in the Ionic framework to display information about the current project and its dependencies. When executed, it provides a summary of various details related to the Ionic environment.

Some of the information displayed by ionic info includes:

  1. Ionic CLI version: It shows the version number of the Ionic Command Line Interface installed on your system.

  2. Ionic framework version: This displays the version of the Ionic framework being used in the project.

  3. Angular CLI version: If the project is built with Angular, the Angular CLI version is shown.

  4. Cordova version: Cordova is a platform used for building native mobile applications, and this displays the version of Cordova installed in the project.

  5. Node.js version: The version number of the Node.js runtime environment being used in the project.

  6. npm version: npm is the package manager for Node.js, and this displays the version of npm installed in the project.

  7. Operating system details: This shows information about the operating system on which the project is being developed.

By running ionic info, developers can quickly check the environment and dependencies associated with their Ionic project, and use it for troubleshooting or sharing information with others.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the ionic tool