nodejs configuration using (*.p2f) file in eclipse - eclipse

I am newbie to nodejs environment. I just started learning about nodejs but I got stuck with environment set up.
When I am trying to set up the environment using *.p2f file which i downloaded from eclipse market place support site for nodejs, I am getting following errors
Help me to sort out the problem
configuration problem using .p2f file in Node Tool Suit

You have got Enide .p2f file, that should be used in Eclipse as File -> Import -> Install -> Install Software Items from File. (All instructions are inside .p2f file, that you can open with text editor. It is just XML file )
Actually, Nodeclipse project download page http://www.nodeclipse.org/updates/ has a lot of options to get started with Node.js and Eclipse.
You can download Enide Studio wit ready to go plugin set.
Or Install Nodeclipse plugin into any Eclipse based IDE.
select what option would work for you.
#Dot_NET Junior please raise an issue on https://github.com/nodeclipse/nodeclipse-1/issues/ if you are still interested in created solution with Node.js and Eclipse

Related

Problems creating a project with CodenameOne in Netbeans

Install Netbeans 12.6 on a Windows 10 machine. I was able to install the CodenameOne plugin with no problem. When creating a project I get the following error message:
Cannot invoke "org.openide.filesystems.FileObject.getFileObject(String)" because "folder" is null
I've been surfing the internet and can't find a way to fix it.
Thank you for your support.
This approach is no longer supported. The plugin is only used for legacy applications and no longer works in newer IDEs due to breaking changes in almost all IDEs.
Starting with Codename One 7.x we moved to maven projects which don't require the plugin and can be created in https://start.codenameone.com/
I have followed the instructions in the manual and it mentions as important:
"Before opening the project in NetBeans, you need to copy the contents of the tools/netbeans directory into the root project directory. These files are required by NetBeans to build, run, and debug the project correctly. "
But I can't find this folder in netbeans version 12.6.

Error when importing Grinder to Eclipse: No marketplace entries found to handle clojure-maven-plugin

I want to import the Grinder(java load testing tool)into eclipse as a new project.
These are my environment:
Win7 64bit
JDK 1.6 32bit
eclipse-java-luna-SR2-win32
These are my steps:
Eclipse--import from git uri ,I used the git link that provided by official
Eclipse--File--Import--Maven--Existing Maven Projects,I use the directory which contain the source files that just downloaded by git
Then Eclipse started to build and handle the dependency,when the process is over,Eclipse gave the error info:
” No marketplace entries found to handle clojure-maven-plugin:1.3.15”
I don’t modify the pom file ,and use the default maven plugin of Eclipse:m2e.I don’t install the maven and other library.
I try to delete “C:\Users\g.m2\repository”,and redo these steps ,however,it doesn't work.
Plz help me,thanks!
Not sure what is the purpose. Are you planning to develop/enhance the grinder tool. If yes, then probably you should connect to its developers in the grinder site.
And if you are planning to use the tool and trying to configure eclipse for the scripting purpose, your should try Grinderstone. Note that it is outdated and works only with the specific version of software. Otherway, you can use pydev in the eclispe for scripting but you can't run there.
Hope it helps..

NetBeans 8 PHPUnit

I have installed PHPUnit follows to their website instructions.
When I'm trying to generate test class
I got this message:
"D:\wamp\bin\php\php5.4.12\phpunit-skelgen.bat" "--ansi"
"generate-test" "main" "D:\Projects\tdd\main.php" "mainTest"
"D:\Projects\tdd\tests\mainTest.php"
The referenced parameter '--ansi' is not registered.
Done.
This is happening in Windows and Linux environment as well.
It happened the same to me. It seems that we were using the old phpunit-skelgen 1.2.1 version. Apparently, NetBeans 8.0.1 assumes you are using the newest version of phpunit-skelgen, that is 2.0.1.
download the new skelgen phar and update the batch file (windows) and you are good to go .
for visual guide follow these blog.
http://kevindaus.blogspot.com/2015/01/fix-netbeans-8-create-test-problem.html
You can install it via composer globally which will also currently give you v2.0.1:
composer global require "phpunit/phpunit-skeleton-generator=*"
Then put C:\Users\[username]\AppData\Roaming\Composer\vendor\bin\phpunit-skelgen.bat into Netbeans Tools > Options > PHP (tab) > Frameworks & Tools (tab) > PHPUnit section.

What version of Eclipse with what version of plugin Hadoop

I tried various versions of Eclipse with plugins downloaded from internet but I always have problem. With latest version of eclipse and the plugin developed for Hadoop2X, I could not open the Hadoop location configuration wizard. I reinstalled eclipse with older version Ganymede. I used the plugin the one for this version, I am able to open the wizard for Hadoop location configuration but when I try to create the project, I have given the hadoop installation direction, even then it shows the error as configure Hadoop installation directory and its not letting me move to the next section of wizard.
So can someone suggest me what version of eclipse should I use and where can I download the suitable plugin. I am using Hadoop2.5.1.
Thank You. Please help me for the same.

Failure creating clojure project in Netbeans

I decided to take a look at Clojure and thought the best and easiest method for me would be to use Netbeans with the Enclojure plugin as I didn't want to have to learn Emacs at the same time. I installed Netbeans 6.9.1 together with the latest JDK using the bundled install (on Windows 7). All went smoothly. I then followed the instructions at http://www.enclojure.org/gettingstarted for installing the enclojure plugin.
When creating a new Clojure application I get the following and see no project files :
java.io.IOException: Could not connect to URL nbresloc:/org/enclojure/ide/templates/project/ClojureProjectTemplate-1.1-distribution.zip. No such resource was found.
Maven is working using mvn --version
I have installed on both Windows 7 and Ubuntu 10.04 (same result).
I have looked on the Enclojure forum and there is a recent open thread for this issue, but it is not solved by anybody presently.
I have Java SE enabled in Netbeans
I have tried enabling the different platform versions of Clojure, 1.0.0, 1.1.0, etc..
The REPL seems to be working happily in Netbeans : (printf "hello") hellonill
I did try ClojureBox on Windows 7, but again that's Emacs, but emacs failed to start the server and hung there and became totally unresponsive.
I come from a .Net background (not Java) so my knowledge of the Java environment is somewhat lacking. My reason for looking at Clojure and not Java.
I am new to Netbeans
If you're interested in a working Maven pom, here is one I've used with Enclojure successfully:
http://puredanger.com/techfiles/100624/pom.xml
There are some project settings you'll need to change and a few dependencies to remove but it might be a good start. In general, I usually create the pom first and then just import the project into NetBeans rather than using the NetBeans options to create projects.
By the way, the REPL work in Enclojure has been split and is coming soon to the Eclipse plugin Counterclockwise.
I had written a small post on it on my blog.
Anyways here is the procedure:
On searching realized that this is a common problem for installing it on > Netbeans 7.. But with some manual tweeks managed to install it. Here are the instructions to install on Netbeans 7. plus:
Install Netbeans 7. You need only the Java SE version.
First Run of Netbeans after installation. Activate feature Java SE
Activate features is on the Start page or from Tools,->Plugins>Installed, click ‘Activate next to the Java SE support
Install Maven: It is HIGHLY recommended that you install maven: http://maven.apache.org/download.html
Go to the Netbeans->Preferences, click on the Miscellaneous tab and make sure the External Maven Home path is pointed to your maven install
Download the EnClojure 1.5 version from here. If you want to manually build, you can do that by following the instructions from here.
After downloading the file, In Netbeans: Goto:- Tools ->Plugins->Downloaded->Add Plugins->Downloaded
Then browse to the downloaded file. Later install by clicking at the “install : button.
Restart and you are on the go.
Visit here to build and run hello world project.Basically building the EnClojure 1.5 manually is the tough job. I hope above was useful.