Socket
Socket
Sign inDemoInstall

express

Package Overview
Dependencies
Maintainers
0
Versions
279
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

express - npm Package Compare versions

Comparing version 2.3.5 to 2.3.6

13

History.md
2.3.5 / 2011-05-19
2.3.6 / 2011-05-20
==================
* Added; export `.view` as alias for `.View`
* Misc refactoring
* Changed; using devDependencies instead of git submodules
* Fixed redis session example
* Fixed markdown example
* Fixed view caching, should not be enabled in development
2.3.5 / 2011-05-20
==================
* Added export `.view` as alias for `.View`
2.3.4 / 2011-05-08

@@ -9,0 +16,0 @@ ==================

@@ -31,3 +31,3 @@

exports.version = '2.3.5';
exports.version = '2.3.6';

@@ -34,0 +34,0 @@ /**

@@ -343,7 +343,8 @@

, viewOptions = app.set('view options')
, cacheViews = app.enabled('view cache')
, root = app.set('views') || process.cwd() + '/views';
// cache id
var cid = view + (parent ? ':' + parent.path : '');
var cid = app.enabled('view cache')
? view + (parent ? ':' + parent.path : '')
: false;

@@ -350,0 +351,0 @@ // merge "view options"

{
"name": "express",
"description": "Sinatra inspired web development framework",
"version": "2.3.5",
"version": "2.3.6",
"author": "TJ Holowaychuk <tj@vision-media.ca>",

@@ -13,6 +13,18 @@ "contributors": [

"dependencies": {
"connect": ">= 1.4.0 < 2.0.0",
"connect": ">= 1.4.1 < 2.0.0",
"mime": ">= 0.0.1",
"qs": ">= 0.0.6"
},
"devDependencies": {
"connect-form": "0.2.1",
"ejs": "0.4.2",
"expresso": "0.7.2",
"hamljs": "0.5.1",
"jade": "0.11.0",
"stylus": "0.13.0",
"should": "0.2.1",
"express-messages": "0.0.2",
"node-markdown": ">= 0.0.1",
"connect-redis": ">= 0.0.1"
},
"keywords": ["framework", "sinatra", "web", "rest", "restful"],

@@ -19,0 +31,0 @@ "repository": "git://github.com/visionmedia/express",

@@ -79,2 +79,22 @@

## Viewing Examples
First install the dev dependencies to install all the example / test suite deps:
$ npm install
then run whichever tests you want:
$ node examples/jade/app.js
## Running Tests
To run the test suite first invoke the following command within the repo, installing the development dependencies:
$ npm install
then run the tests:
$ make test
## License

@@ -81,0 +101,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc