tern-node-extension v0.5.0
tern-node-extension
tern-node-extension is a plugin which adds support validation for node require to the JavaSript code intelligence system Tern.
Here a sample with Eclipse :

See here for more information about node lint with Eclipse.
Installation
tern-node-extension works with the NodeJS Tern Server, and within a browser.
The easiest way to install tern-node-extension is to use a recent version of npm. In the directory where you installed the tern package, simply run
$ npm install tern-node-extensionConfiguration
node-extension tern plugin extends node tern plugin to support validation.
With Node.js
In order for Tern to load the tern-node-express plugin once it is installed, you must
include node-extension in the plugins section of your Tern configuration
file and node.
Here is a minimal example .tern-project configuration file:
{
  "plugins": {
    "node": {},
    "lint": {},
    "node-extension": {}
  }
}With WebBrowser (CodeMirror)
Structure
The basic structure of the project is given in the following way:
- node-extension.jsthe tern plugin.
- demos/demos with node lint tern plugin which use CodeMirror.
