mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 10:41:03 +01:00
d1cc5599b6
Former-commit-id: a1d87cf3a3f4790b9e392dc3c100180284286797
23 lines
472 B
JavaScript
23 lines
472 B
JavaScript
process.env.NODE_ENV = 'production';
|
|
|
|
const express = require('express');
|
|
const createWorker = require('throng')
|
|
|
|
|
|
createWorker(createWebServer)
|
|
|
|
function createWebServer()
|
|
{
|
|
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.'
|
|
)
|
|
});
|
|
|
|
} |