How do I create a MeteorJS project in IntelliJ? - templates

I would like to create a MeteorJS project in IntelliJ IDEA Ultimate 14.1, but it is not showing up in the "New Projects" template:
I have MeteorJS installed and running elsewhere, but I'm unable to find a way to create a MeteorJS project through IDEA.
It's definitely supported, so what am I doing wrong?

The Meteor plugin is not part of IDEA by default.
Here it says:
Note: The plugin is a part of WebStorm IDE and you don't need install it manually for WebStorm
If you are not using WebStorm you should install the plugin.
You can do this by doing the following:
Go to the Preferences menu (CMD , in OSX)
Click the "Plugins" section in the left pane
Click "Install Jetbrains plugin..." in the right panel in the lower
left
Search for "Meteor" in the search box
Click "Install plugin" in the right box

Related

How do I import a live template .jar file for React snippets into JetBrains WebStorm?

I downloaded a live template .jar file from jinsihou19 ReactSnippets on GitHub, referred by the JetBrains Marketplace.
I could not find any documentation on how to install the .jar file on either sites.
Does anyone know how to install this .jar file into WebStorm?
To install a plugin from a jar, follow the documentation:
Download the plugin archive (ZIP or JAR).
Press Ctrl+Alt+S to open the IDE settings and select Plugins.
On the Plugins page, click The Settings button and then click Install Plugin from Disk.
Select the plugin archive file and click OK.
Click OK to apply the changes and restart the IDE if prompted.
However, it's probably easier to search the marketplace in Webstorm for React snippets and click install there, as you'll find the same plugin.

Installing CppCheck on Codeblocks

I have downloaded Codeblocks in a Windows 10 computer and now I am trying to install CppCheck on it.
However, also surfing the net to find a solution, I can't understand how can I install CppCheck (on Codeblocks).
Can anyone explain it to me?
Steps to follow :
Download Codeblocks
Cppcheck is a Contrib plugin integrated in Codeblocks
So, choose the setup from the download page which has all the plugins available
Install Codeblocks
Make sure Cppcheck plugin is selected under Contrib plugins
Install Cppcheck tool for your respective platform
Open Codeblocks and open the Environment Settings via the Settings Menu
Scroll down and select the Cppcheck/Vera++ Tab
Change the Cppcheck application field by clicking on the button with ...
Navigate to the path where Cppcheck tool was installed (Ex: C:\Program Files\Cppcheck\cppcheck.exe)
Click OK
Open a project in Codeblocks and under Plugins Menu select CppCheck to run the tool

How can I configure what .NET version should be installed by windows installer in VS 2017

Currently I am working on a project that needs .NET 4.0 to work properly but when I configure the windows installer and try to install it is trying to install the latest version of .NET. So how can I configure the windows installer to install the .NET version on which the project was created. Also I would like to know how to include the Visual C++ Redistributable in my installer.
When you create a setup project and add primary output of a project to the setup project, the setup project automatically detect dependencies including Microsoft .Net Framework. To see if the detected dependency is correctly what you need, you cam see the following locations:
First of all, right click on Dependencies and click on Refresh Dependencies.
Check prerequisites for your project:
Right click on setup project and choose Properties.
In Properties dialog, from the Configurations combo box choose the configuration, and repeat the following steps for both Debug and Release.
Click on Prerequisites... button to open Prerequisites.
In the Prerequisites dialog, check the desired .Net Framework version.
Press OK and Make sure you repeat above steps for both Debug and Release.
Check Launch Conditions for your setup project:
Right click on setup project and from View select Launch Conditions:
Then under Launch COnditions node, select .Net Framework node and right click and select Properties Window.
In Properties Window check the Version property for .Net Framework launch condition.

Can I run/debug files with babel-node in WebStorm?

I know there are Run/Debug configurations in WebStorm, but I don't know how to configure the context menu (when I right click in a file, it has Run... and Debug... in the menu, but I can't find where to configure this).
Run configurations are created via Run | Edit Configurations... : press +, choose Node.js, in created configuration specify babel-node as Node Interpreter:
But note that debugging doesn't work well when using it. I'd strongly recommend using -r #babel/register Node.js parameter instead - see comments in https://youtrack.jetbrains.com/issue/WEB-21949

check if specific plugin install in eclipse

I wrote a new plugin to Eclipse, and also installed it.
Now- I want to check programmatically (C++ via QT) if the plugin was installed correctly.
so I want to find a way to retrieve all the plugins that installed on my eclipse.
any idea?
in Eclipse go to Help menu, click About Eclipse, Installation Details and click the plugins tab. That should get you an overview.