Giter Site home page Giter Site logo

Comments (4)

sunyang713 avatar sunyang713 commented on May 1, 2024 12

unfortunately not, you're probably gonna have to use some proxy wrapper like https://github.com/nodejitsu/node-http-proxy

Here's the code that worked for me:

var express = require("express");
var httpProxy = require("http-proxy");
var webpack = require("webpack");
var webpackDevMiddleware = require("webpack-dev-middleware");
var webpackHotMiddleware = require("webpack-hot-middleware");
var webpackConfig = require("./webpack.config");


  var app = express();
  var apiProxy = httpProxy.createProxyServer();
  var compiler = webpack(webpackConfig);

  // Start a webpack-dev-server
  app.use(webpackDevMiddleware(compiler, {
    // server and middleware options
    publicPath: webpackConfigDev.output.publicPath,
  }));

  // Enables HMR
  app.use(webpackHotMiddleware(compiler));

  // Proxy api requests
  app.use("/api/*", function(req, res) {
    req.url = req.baseUrl; // Janky hack...
    apiProxy.web(req, res, {
      target: {
        port: 5000,
        host: "localhost"
      }
    });
  });

  app.listen(8080, "localhost");

P.S., use three back ticks to write code! the key next to the number 1.

from webpack-dev-middleware.

ioloie avatar ioloie commented on May 1, 2024

Here's how I did it for my gulp dev server. Turned out to be much simpler than messing about with streams etc. For builds then I either use webpack directly or via webpack-stream (haven't decided yet)

var connect = require('gulp-connect'),
    gulp = require('gulp'),
    proxy = require('http-proxy-middleware'),
    webpackDevMiddleware = require('webpack-dev-middleware'),
    webpackStream = require('webpack-stream'),
    webpack = require('webpack');

var compiler = webpack({
  // config
});

gulp.task('connect', function () {
  connect.server({
    root: ['build'],
    port: userConfig.port || 8000,
    livereload: true,
    middleware: function () {
      var devPack = webpackDevMiddleware(compiler, {
        publicPath: '/assets/',
        headers: {
          "X-webpack-dev": "true"
        },
        stats: {
          colors: true,
          timings: true
        },
        noInfo: true
      });

      var endpoints = [
        '/api',
        '/content',
      ];

      var p = proxy(endpoints, {
        target: userConfig.apiHost,
        ws: true,
        logLevel: 'error',
        changeOrigin: true   // for vhosted sites, changes host header to match to target's host
      });
      return [devPack, p ];
    },
    fallback: './build/index.html'
  });
});

from webpack-dev-middleware.

SpaceK33z avatar SpaceK33z commented on May 1, 2024

The questions above already provide a clear answer, but note that you can also look into the code of the webpack-dev-server to see how this handled, and implement it like that.

from webpack-dev-middleware.

YutHelloWorld avatar YutHelloWorld commented on May 1, 2024

you can use chimurai / http-proxy-middleware for http-proxy

from webpack-dev-middleware.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.