Posts

Showing posts with the label Webstorm

Can't Create WebStorm React Project

Answer : You need to install create-react-app npm module, before you use this feature. npm install -g create-react-app You can read more about this feature on the official release blog of WebStorm. Excerpt from the documentation : Make sure that you have create-react-app installed globally on your computer, for that run npm install -g create-react-app. Then to start your new project, double click on the start task in the npm tasks tool window to run it. That’s it! I had ie installed create-react-app globally using yarn and webstorm failed to find it. Then I used npm , not to mention globally and its working like a charm.

Can I Get Inline Blame (like GitLens) On Webstorm?

Image
Answer : UPDATED: corrected name to "GitToolBox" from "Jetbrains Toolbox" This can be achieved through the GitToolBox plugin, it provides the exact same functionality as git lens, finally I found it! This can be toggled from other settings> git toolbox global or git toolbox project (if you only want to configure per project) See screenshot Install plugin GitToolBox. It has the same functionality as VisualCode's GitLens. File > Settings > Plugins > Marketplace In Webstorm, you can get all the blames for a file with the option: VCS > Git > Annotate Inline blame exact to Gitlens is most probably not available as of now for Webstorm.