Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I import a Github repository into Nodeclipse (Enide)?

I've got Nodeclipse (Enide Studio) up and running, and I can edit code and run a simple "Hello World" Node.js app from within Enide. However, I can't figure out how to import a Node.js project from Github into Enide and run it under the "Node" perspective. Can someone enlighten me as to the steps?

like image 558
justwondering Avatar asked Feb 19 '14 07:02

justwondering


People also ask

How do I Import from GitHub?

In the upper-right corner of any page, click , and then click Import repository. Under "Your old repository's clone URL", type the URL of the project you want to import. Choose your personal account or an organization to own the repository, then type a name for the repository on GitHub.

How do I Import a repository into Eclipse?

Copy the GitHub URL of the repository to the clipboard. Open Eclipse and choose Import –> Projects from Git (with smart import) Choose the Clone URI option in the Git import wizard and click Next. Confirm the URI, Host and Repository path parameters and click Next.


1 Answers

Run npm install -g nodeclipse

And from the source code directory run nodeclipse -p After this you can import as normal project: File -> Import -> General / Existing Projects into Workspace

like image 125
Roi Ezra Avatar answered Oct 30 '22 08:10

Roi Ezra