Configure IntelliJ for a full stack JavaScript Automation
There are some crucial IntelliJ plugins to install: Base64 for IDEA and Storm BashSupport Bootstrap Bootstrap 3 ddescriber for Jasmine JS Toolbox NUnitJS Markdown Support As a peace offering to the mighty IntelliJ, use Java as project SDK: I prefer to configure four separate modules, to help separate back-end vs. front-end JavaScript dependencies : Add the bower_components library to the client module, and the node_modules library to the server module: And be sure to enable JavaScript libraries in the editor. Per best practices, we do not commit the local IntelliJ IDEA configuration folder ( /.idea/ ) to the repository , instead adding it to the .gitignore file like so: # IntelliJ IDEA local workspace . idea However, for some developers' convenience (and others' dismay) we do commit the four IntelliJ module .iml files to the repository: client . iml...