mirror of
https://github.com/expressjs/expressjs.com.git
synced 2026-02-23 20:32:45 +00:00
270 lines
8.9 KiB
HTML
270 lines
8.9 KiB
HTML
<html>
|
|
<head>
|
|
<title>Express - node web framework</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
|
|
<script type="text/javascript">
|
|
|
|
var _gaq = _gaq || [];
|
|
_gaq.push(['_setAccount', 'UA-25235225-1']);
|
|
_gaq.push(['_trackPageview']);
|
|
|
|
(function() {
|
|
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
|
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
|
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
|
})();
|
|
|
|
</script>
|
|
<style>
|
|
#warning {
|
|
background: #cb0000;
|
|
color: #eeeeee;
|
|
border-radius: 3px;
|
|
padding: 10px 16px;
|
|
}
|
|
#tagline {
|
|
margin-left: 75px;
|
|
margin-bottom: 30px;
|
|
color: rgba(255,255,255,0.7); }
|
|
html {
|
|
background: #1c1c1c url(images/bg.tile.jpg); }
|
|
|
|
body {
|
|
margin: 0;
|
|
padding-bottom: 30px;
|
|
font: 14px/1.4 "Helvetica Neue", "Lucida Grande", "Arial";
|
|
font-size: 14px;
|
|
line-height: 1.5;
|
|
-webkit-font-smoothing: antialiased;
|
|
background: url(images/bg.jpg) 50% 0 no-repeat;
|
|
color: #8b8b8b; }
|
|
|
|
* {
|
|
outline: none; }
|
|
|
|
em {
|
|
color: white; }
|
|
|
|
a img {
|
|
border: none !important; }
|
|
|
|
a {
|
|
font-weight: bold;
|
|
text-decoration: none;
|
|
color: white;
|
|
-webkit-transition-property: opacity, -webkit-transform, color, background-color, padding, -webkit-box-shadow;
|
|
-webkit-transition-duration: 0.15s;
|
|
-webkit-transition-timing-function: ease-out; }
|
|
a:hover {
|
|
opacity: 0.8; }
|
|
|
|
h1, h2, h3, h4 {
|
|
margin: 45px 0 0 0;
|
|
color: white;
|
|
text-shadow: 1px 2px 2px rgba(0,0,0,0.6); }
|
|
|
|
h3 {
|
|
font-size: 18px; }
|
|
h4 {
|
|
margin-left: 10px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
pre {
|
|
margin: 20px 10px;
|
|
padding: 25px 20px;
|
|
background: rgba(0,0,0,0.5);
|
|
border: 1px solid #323232;
|
|
-webkit-box-shadow: 1px 2px 2px rgba(0,0,0,0.6);
|
|
-moz-box-shadow: 1px 2px 2px rgba(0,0,0,0.6);
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px; }
|
|
|
|
code {
|
|
font-family: "Helvetica Neue", "Lucida Grande", "Arial"; }
|
|
|
|
ul {
|
|
margin: 15px 0;
|
|
padding: 0 0 0 35px; }
|
|
ul li {
|
|
margin: 0;
|
|
padding: 2px 0;
|
|
list-style: square; }
|
|
ul li ul {
|
|
margin: 0;
|
|
padding-left: 12px;
|
|
}
|
|
|
|
.man-name, #Express { display:none; }
|
|
|
|
.sect {
|
|
margin-left: 40px; }
|
|
img {
|
|
margin-left: 20px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
#logo {
|
|
display: block;
|
|
margin-left: 30%;
|
|
margin-bottom: 30px;
|
|
width: 194px;
|
|
height: 51px;
|
|
background: url(images/logo.png) 0 0 no-repeat;
|
|
text-indent: -99999px; }
|
|
#logo:hover {
|
|
opacity: 0.7; }
|
|
#logo:active {
|
|
opacity: 0.3; }
|
|
|
|
#ribbon {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
z-index: 2; }
|
|
|
|
#wrapper {
|
|
width: 100%;
|
|
min-height: 800px;
|
|
background: url(images/top.png) 0 0 repeat-x; }
|
|
|
|
#container {
|
|
margin: 0 auto;
|
|
padding-top: 80px;
|
|
width: 550px; }
|
|
|
|
#toc {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
margin: 0 0 0 15px;
|
|
padding: 15px;
|
|
height: 100%;
|
|
background: rgba(0,0,0,0.2);
|
|
overflow: auto;
|
|
border-right: 1px solid rgba(255,255,255,0.05);
|
|
}
|
|
#toc li {
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
#toc li a {
|
|
font-size: 11px;
|
|
}
|
|
#menu {
|
|
margin-left: 75px;
|
|
padding: 0;
|
|
padding-bottom: 30px; }
|
|
#menu li {
|
|
display: inline;
|
|
list-style: none; }
|
|
#menu li a {
|
|
display: block;
|
|
float: left;
|
|
margin: 0 2px;
|
|
padding: 3px 15px;
|
|
background: rgba(0,0,0,0.2);
|
|
-webkit-border-radius: 8px;
|
|
-moz-border-radius: 8px;
|
|
-webkit-box-shadow: 1px 2px 2px rgba(0,0,0,0.6);
|
|
-moz-box-shadow: 1px 2px 2px rgba(0,0,0,0.6);
|
|
-webkit-transition-property: opacity, -webkit-transform, color, background-color, -webkit-box-shadow;
|
|
-webkit-transition-duration: 0.15s;
|
|
-webkit-transition-timing-function: ease-out; }
|
|
#menu li a:hover,
|
|
#menu li a.active {
|
|
background: rgba(0,0,0,0.5); }
|
|
#menu li a:active {
|
|
background: rgba(0,0,0,0.1);
|
|
-webkit-box-shadow: 1px 1px 1px rgba(0,0,0,0.4);
|
|
-moz-box-shadow: 1px 1px 1px rgba(0,0,0,0.4); }
|
|
</style>
|
|
<script>
|
|
$(function(){
|
|
$('.section').hide();
|
|
$('.toggle, a.section-title').toggle(function(){
|
|
$(this).siblings('ul').fadeIn(300);
|
|
return false;
|
|
}, function(){
|
|
$(this).siblings('ul').fadeOut(300);
|
|
return false;
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<a href='http://github.com/visionmedia/express'>
|
|
<img alt='Fork me on GitHub' id='ribbon' src='http://s3.amazonaws.com/github/ribbons/forkme_right_white_ffffff.png' />
|
|
</a>
|
|
<div id="wrapper">
|
|
<div id="container">
|
|
<a href='http://github.com/visionmedia/express' id='logo'>Express</a>
|
|
<div id="warning">
|
|
<center><strong>Express 2.x</strong> IS NO LONGER MAINTAINED</center>
|
|
<p>Known and unknown security and performance issues in 2.x have not been addressed since the last update (29 June, 2012). It is highly recommended to <a href="https://github.com/strongloop/express/wiki/Migrating-from-2.x-to-3.x">upgrade to <strong>Express 3.x</strong></a> or to <a href="http://expressjs.com/4x/api.html"><strong>Express 4.x</strong></a>.</p>
|
|
</div>
|
|
<p id="tagline">
|
|
High performance, high class web development for
|
|
<a href="http://nodejs.org">Node.js</a>
|
|
</p>
|
|
<ul id="menu">
|
|
<li><a href="index.html">Home</a></li>
|
|
<li><a href="guide.html">Guide</a></li>
|
|
<li><a href="screencasts.html">Screencasts</a></li>
|
|
<li><a href="applications.html">Applications</a></li>
|
|
</ul>
|
|
|
|
|
|
<br />
|
|
|
|
|
|
<p><a href="http://learnboost.com">Learnboost</a> is a free online gradebook application, aimed to crush the competition with innovative, realtime, enjoyable features.</p>
|
|
|
|
<p><a href="http://learnboost.com"><img src="images/apps/learnboost.png" alt="LearnBoost" /></a></p>
|
|
|
|
<p><a href="http://storify.com">Storify</a> lets you turn what people post on social media websites into compelling stories.</p>
|
|
|
|
<p><a href="http://storify.com"><img src="images/apps/storify.png" alt="Storify" /></a></p>
|
|
|
|
<p><a href="http://pakistansurvey.org/">Pakistan Survey</a> by <a href="http://developmentseed.org">Development Seed</a>, provides in-depth agency-specific analysis from regional experts with data from 1,000 interviews across 120 villages in all seven tribal agencies and mapping of 142 reported drone strikes in FATA through July 2010.</p>
|
|
|
|
<p><a href="http://pakistansurvey.org"><img src="images/apps/developmentseed.png" alt="Pakistan Survey" /></a></p>
|
|
|
|
<p><a href="http://markup.io">Markup.IO</a> allows you to draw directly on <em>any</em> website, then share with others to share your thoughts.</p>
|
|
|
|
<p><a href="http://markup.io"><img src="images/apps/markupio.png" alt="Markup.IO" /></a></p>
|
|
|
|
<p><a href="http://scrabb.ly">Scrabb.ly</a> is a massively multiplayer scrabble game initially created for the <a href="http://nodeknockout.com/">Node Knockout</a> competition.</p>
|
|
|
|
<p><a href="http://scrabb.ly"><img src="images/apps/scrabbly.png" alt="Online Realtime Scrabble" /></a></p>
|
|
|
|
<p><a href="http://clickdummy.net/">ClickDummy</a> is a rapid mockup prototyping application for designers and dummies.</p>
|
|
|
|
<p><a href="http://clickdummy.net"><img src="images/apps/clickdummy.png" alt="Mockup Prototying" /></a></p>
|
|
|
|
<p><a href="http://nodeknockout.com">Node Knockout</a> organized the first ever node-specific competition with hundreds of contestants.</p>
|
|
|
|
<p><a href="http://nodeknockout.com"><img src="images/apps/nodeko.png" alt="Node Knockout Competition Express" /></a></p>
|
|
|
|
<p><a href="http://widescript.com">Widescript</a> is an innovative app that helps you focus and interact with your texts – on your desktop, your couch or on the go.</p>
|
|
|
|
<p><a href="http://widescript.com"><img src="images/apps/widescript.png" alt="Widescript" /></a></p>
|
|
|
|
<p><a href="http://www.e-resistible.co.uk/">e-resistable</a> is an online order takeaway system providing an intuitive way to fill your belly from your computer!</p>
|
|
|
|
<p><a href="http://www.e-resistible.co.uk"><img src="images/apps/e-resistable.png" alt="Online Takeaway" /></a></p>
|
|
|
|
<p><a href="http://toptwittertrends.com">Top Twitter Trends</a> utilizes MongoDB, Socket.IO, jQuery and many other exciting libraries to bring you trending tweets in realtime.</p>
|
|
|
|
<p><a href="http://toptwittertrends.com"><img src="images/apps/toptwittertrends.png" alt="Twitter Trends" /></a></p>
|
|
|
|
<br />
|
|
|
|
|
|
<p>The applications shown above are not listed in any specific order. To have an application added or removed please contact <a href="http://github.com/visionmedia">TJ Holowaychuk</a>.</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|