tern-node-express v0.4.0
tern-node-express
tern-node-express is a plugin which adds support for express web application framework for node to the JavaSript code intelligence system Tern.
Demo
You can see demo with CodeMirror (inside Web Browser) demos/express.html :
Here a screenshot with completion for expression object :

Here a screenshot with completion for Response instance:

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