srcServer.js 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. import express from 'express';
  2. import path from 'path';
  3. import open from 'open';
  4. import webpack from 'webpack';
  5. import config from '../webpack.config.dev';
  6. /* eslint-disable no-console */
  7. const port = 3000;
  8. const app = express();
  9. const compiler = webpack(config);
  10. app.use(require('webpack-dev-middleware')(compiler, {
  11. noInfo: true,
  12. publicPath: config.output.publicPath
  13. }));
  14. app.get('/', function (req, res) {
  15. // bind path
  16. res.sendFile(path.join(__dirname, '../src/index.html'));
  17. });
  18. // The onle below is let's say the real prod DB, the test one will be json server
  19. // Use same express for test and for serving API to web app :
  20. app.get('/users', function (req, res) {
  21. //Hard coding here but ler's pretend it is a real DB
  22. res.json([
  23. { "id": 1, "firstName": "Jojo", "lastName": "LB", "email": "jojo@gmail.com" },
  24. { "id": 2, "firstName": "Lily", "lastName": "Ma", "email": "lily@gmail.com" },
  25. { "id": 3, "firstName": "Bob", "lastName": "Smith", "email": "bob@gmail.com" }
  26. ]);
  27. });
  28. app.listen(port, function (err) {
  29. if (err) {
  30. console.log(err);
  31. } else {
  32. open('http://localhost:' + port);
  33. }
  34. });