Browse Source

Lesson 11 Final

Ryan Florence 9 years ago
parent
commit
7f336847ce
5 changed files with 35 additions and 1 deletions
  1. 5 1
      package.json
  2. 0 0
      public/index.css
  3. 0 0
      public/index.html
  4. 21 0
      server.js
  5. 9 0
      webpack.config.js

+ 5 - 1
package.json

@@ -4,11 +4,15 @@
   "description": "",
   "description": "",
   "main": "index.js",
   "main": "index.js",
   "scripts": {
   "scripts": {
-    "start": "webpack-dev-server --inline --content-base . --history-api-fallback"
+    "start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
+    "start:dev": "webpack-dev-server --inline --content-base public/ --history-api-fallback",
+    "start:prod": "webpack && node server.js"
   },
   },
   "author": "",
   "author": "",
   "license": "ISC",
   "license": "ISC",
   "dependencies": {
   "dependencies": {
+    "compression": "^1.6.1",
+    "if-env": "^1.0.0",
     "react": "^0.14.7",
     "react": "^0.14.7",
     "react-dom": "^0.14.7",
     "react-dom": "^0.14.7",
     "react-router": "^2.0.0"
     "react-router": "^2.0.0"

+ 0 - 0
index.css → public/index.css


+ 0 - 0
index.html → public/index.html


+ 21 - 0
server.js

@@ -0,0 +1,21 @@
+var express = require('express')
+var path = require('path')
+var compression = require('compression')
+
+var app = express()
+
+app.use(compression())
+
+// serve our static stuff like index.css
+app.use(express.static(path.join(__dirname, 'public')))
+
+// send all requests to index.html so browserHistory works
+app.get('*', function (req, res) {
+  res.sendFile(path.join(__dirname, 'public', 'index.html'))
+})
+
+var PORT = process.env.PORT || 8080
+app.listen(PORT, function() {
+  console.log('Production Express server running at localhost:' + PORT)
+})
+

+ 9 - 0
webpack.config.js

@@ -1,11 +1,20 @@
+var webpack = require('webpack')
+
 module.exports = {
 module.exports = {
   entry: './index.js',
   entry: './index.js',
 
 
   output: {
   output: {
+    path: 'public',
     filename: 'bundle.js',
     filename: 'bundle.js',
     publicPath: '/'
     publicPath: '/'
   },
   },
 
 
+  plugins: process.env.NODE_ENV === 'production' ? [
+    new webpack.optimize.DedupePlugin(),
+    new webpack.optimize.OccurrenceOrderPlugin(),
+    new webpack.optimize.UglifyJsPlugin()
+  ] : [],
+
   module: {
   module: {
     loaders: [
     loaders: [
       { test: /\.js$/, exclude: /node_modules/, loader: 'babel-loader?presets[]=es2015&presets[]=react' }
       { test: /\.js$/, exclude: /node_modules/, loader: 'babel-loader?presets[]=es2015&presets[]=react' }