{{theTime}}

Search This Blog

Total Pageviews

JNode Eclipse Tutorial

Where to Download JNode
         http://nodejs.org/download/ 
Where to Download Eclipse JNode plugin
         http://www.nodeclipse.org/updates 
How to setup Node.exe in eclipse
How to Create first Eclipse Project
   File --> New --> NodeProject
How to run Node project
   Right click hello-world-server.js --> Run As --> Node Application
How to see the result
  Open browser and type url:   http://localhost:port  (port mentioned in hello-world-server.js).

No comments:

Generate Insert Sql from Select Statement

SELECT 'INSERT INTO ReferenceTable (ID, Name) VALUES (' +        CAST(ID AS NVARCHAR) + ', ''' + Name + ''...