-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.js
82 lines (64 loc) · 3.08 KB
/
index.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*-------------------------------------------------------------------------------------------------------------------*\
| Copyright (C) 2015 PayPal |
| |
| Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance |
| with the License. |
| |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software distributed under the License is distributed |
| on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for |
| the specific language governing permissions and limitations under the License. |
\*-------------------------------------------------------------------------------------------------------------------*/
'use strict';
// make `.jsx` file requirable by node
require('node-jsx').install();
var path = require('path');
var express = require('express');
var renderer = require('react-engine');
var compress = require("compression");
var app = express();
app.set('port', process.env.PORT || 3000);
// create the view engine with `react-engine`
var engine = renderer.server.create({
reactRoutes: path.join(__dirname + '/public/routes.jsx')
});
// set the engine
app.engine('.jsx', engine);
// set the view directory
app.set('views', __dirname + '/public/views');
// set jsx as the view engine
app.set('view engine', 'jsx');
// finally, set the custom view
app.set('view', renderer.expressView);
app.use(compress());
//expose public folder as static assets
app.use(express.static(__dirname + '/public'));
app.get('/', function(req, res) {
res.render('home', {
title: 'React Engine Demo',
name: 'Home',
selection: 'header-home'
});
});
app.get('/page2', function(req, res) {
res.render('page2', {
title: 'React Engine Demo',
name: 'Page 2',
selection: 'header-page2'
});
});
app.get('/spa*', function(req, res) {
res.render(req.url, {
title: 'SPA - React Engine Demo',
name: 'React SPA',
selection: 'header-spa'
});
});
var server = app.listen(app.get('port'), function() {
var host = server.address().address;
var port = server.address().port;
console.log('Example app listening at http://%s:%s', host, port);
});