I'm new to CodeceptJs and have a question regarding its installation.
I see 2 kinds of installation:
- local (npm install --save-dev codeceptjs)
- global ([sudo] npm install -g codeceptjs webdriverio)
When should I use local and when should I use global?
I also will have to integrate it with Jenkins pipeline in the future.If I perform global installation, then won't node_modules folder be installed in my machine? So I won't be able to integrate it with Jenkins rt?
I'm guessing, going with local installation is the appropriate solution?