UNPKG
yui-pathogen-encoder
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
0.1.3
0.1.2
0.1.1
0.1.0
0.0.2
0.0.1
0.0.0
Enables pathogen encoding in YUI Loader
ekashida/gallery
yui-pathogen-encoder
/
example
/
node_modules
/
express
/
test.js
15 lines
(10 loc)
•
206 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
var
express =
require
(
'express'
);
var
http =
require
(
'http'
);
var
app =
express
();
var
n =
50
;
while
(n--) { app.
use
(
function
(
req, res, next
)
{
next
(); }); } http.
createServer
(app).
listen
(
3000
);