UNPKG

fruitstand

Version:
103 lines (102 loc) 5.95 kB
{ "name": "express", "description": "Sinatra inspired web development framework", "version": "4.0.0", "author": { "name": "TJ Holowaychuk", "email": "tj@vision-media.ca" }, "contributors": [ { "name": "TJ Holowaychuk", "email": "tj@vision-media.ca" }, { "name": "Aaron Heckmann", "email": "aaron.heckmann+github@gmail.com" }, { "name": "Ciaran Jessup", "email": "ciaranj@gmail.com" }, { "name": "Guillermo Rauch", "email": "rauchg@gmail.com" }, { "name": "Jonathan Ong", "email": "me@jongleberry.com" }, { "name": "Roman Shtylman", "email": "shtylman+expressjs@gmail.com" } ], "dependencies": { "parseurl": "1.0.1", "accepts": "1.0.0", "type-is": "1.0.0", "range-parser": "1.0.0", "cookie": "0.1.0", "buffer-crc32": "0.2.1", "fresh": "0.2.2", "methods": "0.1.0", "send": "0.2.0", "cookie-signature": "1.0.3", "merge-descriptors": "0.0.2", "utils-merge": "1.0.0", "escape-html": "1.0.1", "qs": "0.6.6", "serve-static": "1.0.1", "path-to-regexp": "0.1.2", "debug": ">= 0.7.3 < 1" }, "devDependencies": { "ejs": "~0.8.4", "mocha": "~1.15.1", "jade": "~0.30.0", "hjs": "~0.0.6", "stylus": "~0.40.0", "should": "~2.1.1", "connect-redis": "~1.4.5", "marked": "0.2.10", "supertest": "~0.8.1", "body-parser": "1.0.0", "cookie-parser": "1.0.1", "static-favicon": "1.0.0", "express-session": "1.0.1", "morgan": "1.0.0", "vhost": "1.0.0" }, "keywords": [ "express", "framework", "sinatra", "web", "rest", "restful", "router", "app", "api" ], "repository": { "type": "git", "url": "git://github.com/visionmedia/express" }, "scripts": { "prepublish": "npm prune", "test": "make test" }, "engines": { "node": ">= 0.8.0" }, "license": "MIT", "readme": "[![express logo](http://f.cl.ly/items/0V2S1n0K1i3y1c122g04/Screen%20Shot%202012-04-11%20at%209.59.42%20AM.png)](http://expressjs.com/)\n\n Fast, unopinionated, minimalist web framework for [node](http://nodejs.org).\n\n [![Build Status](https://secure.travis-ci.org/visionmedia/express.svg)](https://travis-ci.org/visionmedia/express) [![Gittip](https://img.shields.io/gittip/visionmedia.svg)](https://www.gittip.com/visionmedia/)\n\n```js\nvar express = require('express');\nvar app = express();\n\napp.get('/', function(req, res){\n res.send('Hello World');\n});\n\napp.listen(3000);\n```\n\n Note that Express v4 release candidates have been released. \n Please try it out, but not in production, and report any issues you may find here or to the appropriate repositories.\n Be sure to read [Migrating from 3.x to 4.x](https://github.com/visionmedia/express/wiki/Migrating-from-3.x-to-4.x) as well as [New features in 4.x](https://github.com/visionmedia/express/wiki/New-features-in-4.x).\n\n## Installation\n\n $ npm install express\n\n## Quick Start\n\n The quickest way to get started with express is to utilize the executable [`express(1)`](http://github.com/expressjs/generator) to generate an application as shown below:\n \n Install the executable. The executable's major version will match Express's:\n \n $ npm install -g express-generator@3\n\n Create the app:\n\n $ express /tmp/foo && cd /tmp/foo\n\n Install dependencies:\n\n $ npm install\n\n Start the server:\n\n $ npm start\n\n## Features\n\n * Robust routing\n * HTTP helpers (redirection, caching, etc)\n * View system supporting 14+ template engines\n * Content negotiation\n * Focus on high performance\n * Environment based configuration\n * Executable for generating applications quickly\n * High test coverage\n\n## Philosophy\n\n The Express philosophy is to provide small, robust tooling for HTTP servers, making\n it a great solution for single page applications, web sites, hybrids, or public\n HTTP APIs.\n\n Express does not force you to use any specific ORM or template engine. With support for over\n 14 template engines via [Consolidate.js](http://github.com/visionmedia/consolidate.js),\n you can quickly craft your perfect framework.\n\n## More Information\n\n * [Website and Documentation](http://expressjs.com/) stored at [visionmedia/expressjs.com](https://github.com/visionmedia/expressjs.com)\n * Join #express on freenode\n * [Google Group](http://groups.google.com/group/express-js) for discussion\n * Follow [tjholowaychuk](http://twitter.com/tjholowaychuk) and [defunctzombie](https://twitter.com/defunctzombie) on twitter for updates\n * Visit the [Wiki](http://github.com/visionmedia/express/wiki)\n * [Русскоязычная документация](http://jsman.ru/express/)\n * Run express examples [online](https://runnable.com/express)\n\n## Viewing Examples\n\nClone the Express repo, then install the dev dependencies to install all the example / test suite dependencies:\n\n $ git clone git://github.com/visionmedia/express.git --depth 1\n $ cd express\n $ npm install\n\nThen run whichever tests you want:\n\n $ node examples/content-negotiation\n\nYou can also view live examples here:\n\n<a href=\"https://runnable.com/express\" target=\"_blank\"><img src=\"https://runnable.com/external/styles/assets/runnablebtn.png\" style=\"width:67px;height:25px;\"></a>\n\n## Running Tests\n\nTo run the test suite, first invoke the following command within the repo, installing the development dependencies:\n\n $ npm install\n\nThen run the tests:\n\n $ make test\n\n## Contributors\n\n https://github.com/visionmedia/express/graphs/contributors\n\n## License\n\nMIT\n", "readmeFilename": "Readme.md", "bugs": { "url": "https://github.com/visionmedia/express/issues" }, "homepage": "https://github.com/visionmedia/express", "_id": "express@4.0.0", "_from": "express@" }