FAQ

Kretes CLI without VS Code

Kretes provides a CLI tool similar to Rails, Django or Laravel. In fact, each command in Visual Studio Code is based on the command-line invocation. Type kretes help to learn more. You can also use just ks instead of writing kretes each time.

Outdated node-gyp

If you're getting an error similar to the following one:

TypeError: '>=' not supported between instances of 'tuple' and 'str'

it means that the node-gyp is outdated. Run the following commands to solve it:

npm explore npm -g -- npm install node-gyp@latest
npm explore npm -g -- npm explore npm-lifecycle -- npm install node-gyp@latest

Found a mistake?