私はノードアプリケーションとcreate-react-appをネストしています。開発環境内では、同時に2つのサーバーを実行します。一方はエクスプレッション側、もう一方は応答側です。現時点で反応側POSTリクエストのみのpackage.jsonでプロキシを設定する方法は?
のノードのための
localhost:5000
localhost:3000
、私は、サインアップページ
http://localhost:3000/signup
を持っており、ユーザーが「サインアップ」ボタンを押すと、それはPOSTリクエストを行います〜
/signup
。
/signup
ためのみ POSTリクエストがlocalhost:5000
及びません(サインアップフォームのビューページである)GETリクエストにプロキシされるように、私はそれをしたいです。
どうすればよいですか?
package.json(で作成反応するアプリ):コードの
{
"name": "client",
"version": "0.1.0",
"private": true,
"proxy": {
"/signup": {
"target": "http://localhost:5000"
}
},
"dependencies": {
"axios": "^0.16.2",
"lodash": "^4.17.4",
"materialize-css": "^0.100.2",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-scripts": "1.0.14",
"redux": "^3.7.2",
"redux-form": "^7.0.4",
"redux-thunk": "^2.2.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
}
レクリエーション:https://github.com/drhectapus/Voting-App