-
Notifications
You must be signed in to change notification settings - Fork 18
/
server.js
68 lines (55 loc) · 2.07 KB
/
server.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
var express = require('express');
var path = require('path');
var favicon = require('serve-favicon');
var logger = require('morgan');
var bodyParser = require('body-parser');
var url = require('url');
var debug = require('debug')('http');
var compress = require('compression')();
var config = require("./config/config");
var validator = require('validator');
var mime = require('mime');
require('node-jsx').install({extension: '.jsx'});
var React = require("react"),
options = options || {},
// Instantiate app
app = express(),
// Detect environment
environment = process.env.NODE_ENV || 'production',
// Determine port to fire up on
port = options.port || process.env.PORT || config.port;
// Decide which logging interface to use.
// Attach it to `app` so that required route modules, etc. can use it
app.logger = options.logger || console.log.bind(console);
// Enable verbose logging for incoming requests if configured to do so
if (config.verbose) {
app.use(function (req, res, next) {
app.logger(req.method + ' ' + req.path + ' (remote: ' + req.ip + ')');
next();
});
}
// Body-parsing middleware
app.use(bodyParser.urlencoded({extended: true}));
app.use(bodyParser.json());
// compress
app.use(compress);
app.get('/index.php', function (req, res) {
var markup="tet";
var Application = React.createFactory(require('./compiled/home'));
//var Application = (require('./compiled/home'));
var data=React.renderToString(Application());
res.send(data);
//React.renderToString(Application({path: '/'}), function (err, markup) {
// console.log(err);
// res.send('<!DOCTYPE html>' + markup);
//});
//
//res.header("Cache-Control", "public, max-age=172800"); // 2419200 14 days
//res.header("Expires", new Date(Date.now() + 172800).toUTCString()); // 345600000
//React.renderToStaticMarkup(App({path: '/'}), function (err, markup) {
// res.send('<!DOCTYPE html>' + markup);
//});
});
// Serve static files from `public/dist`
app.use(express.static(__dirname + '/public/dist'));
module.exports = app;