I try Volta tools on existing Node project. This is very great tools :)
But, can i use global package ? For example, i've run :
npm i -g gitmoji-cli
Then, i try to use gitmoji, but it's undefined on the command line. I'm on the right node version, but i don't really understand why the gitmoji is not found.
Do you know if I need other param ?
If anyone have already use this tool and installing global package .. :)

You can install global packages using
volta install <package>. In your case, it would bevolta install gitmoji-cli.Volta will then install the package and make it available anywhere in your terminal. However, if you open the terminal in a project that has that package listed as a dependency, or dev dependency, Volta will use the package from the
node_modulesof that project instead.For more information see: global-installs-done-right