mirror of
https://github.com/kataras/iris.git
synced 2025-12-20 03:17:04 +00:00
Add expressjs benchmarks similar to iris and netcore but MVC
Former-commit-id: 0f56ebf040514ee332b6b4a13ecc02ce6cd339c7
This commit is contained in:
14
_benchmarks/expressjs/app.js
Normal file
14
_benchmarks/expressjs/app.js
Normal file
@@ -0,0 +1,14 @@
|
||||
process.env.NODE_ENV = 'production';
|
||||
|
||||
const express = require('express');
|
||||
const app = express();
|
||||
|
||||
app.get('/api/values/:id', function (req, res) {
|
||||
res.send('value');
|
||||
});
|
||||
|
||||
app.listen(5000, function () {
|
||||
console.log(
|
||||
'Now listening on: http://localhost:5000\nApplication started. Press CTRL+C to shut down.'
|
||||
)
|
||||
});
|
||||
Reference in New Issue
Block a user