WebpackDevServerでモックサーバを立てる

2019.8.10

WebpackDevServerでローカル開発をする際にAPIのモックサーバを立てて開発したい時があると思います。そういうときにWebpackDevServerで簡易的なサーバを実装する機能が便利です。

WebpackDevServerのbeforeプロパティを使えばかなり簡単にモックサーバを立てることができます。

devServer.beforeを使ったモックサーバ

devServer.before | webpack

webpack.config.jsのdev serverの設定でbeforeというプロパティでexpressのようなノリでサーバを実装できます。

webpack.config.jsに下記のように実装できます。

module.exports = {
  //...
  devServer: {
    before: function(app, server) {
      app.get('/path', function(req, res) {
        res.json({ custom: 'response' });
      });
    }
  }
};

リクエスト

リクエストはこんな感じで書けば良いです。

export const getPath = () => {
  const url = "/path";
  const xhr = new XMLHttpRequest();
  xhr.open("GET", url);
  xhr.send();
  xhr.onload = res => {
    console.log(res);
  };
};

もしくはFetch APIを使っても良いです。

fetch("/path").then(res => {
    console.log(res);
  });

リクエストはこんな感じになります。

          2019 08 10 11 15 09

レスポンスがちゃんと返ってきてるのがわかります。

          2019 08 10 11 15 17

© 2019-2024 kwst.site.