-
Notifications
You must be signed in to change notification settings - Fork 902
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TypeError [ERR_INVALID_CHAR]: Invalid character in header content ["X-React-Native-Project-Root"] at ServerResponse.setHeader (node:_http_outgoing:651:3) #2279
Comments
I had the same issue. And I was researching a lot and I found this^
I hope this will help you too 😇 |
thank you saved my dev day 😊 |
the solution provided by @RafikGadzhiyev is correct thanks to him. |
I got
|
Same here, did you solve it @arnaudambro ? UPDATE: If anyone else has the same error, please, check your project folder path and confirm there aren´t any special characteres on it. In the example of this issue the path has Arabic characters |
Thank you, my problem has been solved |
Sorted out. My path had space between two texts. Space removed and the problem went away. |
THE PROBLEM IS ONLY IN PATH TO YOUR PROJECT You can use only latine chars, may also use "-" in naming If your path to project naming is correct you dont need any ways written higher But if you need path with not correct chars you may and always will work (don't forget to clear cache!) newc URL allow us to make ref to local root file, for example: |
Thank you, this worked for me. |
Thank you, my path had a non english character |
deleting the 19 line X-React-Native-Project-Root |
My path looks fine, but I still get an error TypeError [ERR_INVALID_URL]: Invalid URL |
You can try to move project to another path or try the second way described in my answer higher |
Problem solved, thank you |
@hw514352 这个方法挺管用的 |
|
hey! is anyone able to validate if this fix is working properly? We'd like to upstream this change :) diff --git forkSrcPrefix/packages/cli-server-api/src/statusPageMiddleware.ts forkDstPrefix/packages/cli-server-api/src/statusPageMiddleware.ts
index 3e98f2b2b46c6401bb3630c746787aec1b8dac3c..2417950d2bf0b88398d2441c6f8484cacddf8900 100644
--- forkSrcPrefix/packages/cli-server-api/src/statusPageMiddleware.ts
+++ forkDstPrefix/packages/cli-server-api/src/statusPageMiddleware.ts
@@ -5,6 +5,7 @@
* LICENSE file in the root directory of this source tree.
*/
import http from 'http';
+import path from 'path';
/**
* Status page so that anyone who needs to can verify that the packager is
@@ -14,6 +15,7 @@ export default function statusPageMiddleware(
_req: http.IncomingMessage,
res: http.ServerResponse,
) {
- res.setHeader('X-React-Native-Project-Root', process.cwd());
+ const projectRoot = path.normalize(process.cwd());
+ res.setHeader('X-React-Native-Project-Root', projectRoot);
res.end('packager-status:running');
}
|
I started the project, but this solution does not work and should not work in theory. The problem is not slashes in the path to the project, but that there may be characters in the path that require conversion via a new URL (you can see the problem in detail in my comment on this problem above). The solution I described works for me |
Thanks.... |
If it doesn't work after all this, reload it and the emulator will work for me :) |
thx for giving me solution! it works :D |
Description
I encountered the following error when starting a new React Native project:
Steps to Reproduce:
Create a new React Native project using the React Native CLI.
Run the project using the command: npm start -> a for android.
Observe the error mentioned above.
Expected Behavior
I expected the new React Native project to start without any errors.
Error
info Opening app on Android...
TypeError [ERR_INVALID_CHAR]: Invalid character in header content ["X-React-Native-Project-Root"] at ServerResponse.setHeader (node:_http_outgoing:651:3)
Environment
Node.js version: >=18
npm version: 10.1.0
React Native Version
0.73.2
Affected Platforms
Runtime - Android, Build - Windows
Output of npx react-native info
info Fetching system and libraries information... ... System: OS: Windows 11 10.0.22621 CPU: (8) x64 Intel(R) Core(TM) i5-10310U CPU @ 1.70GHz Memory: 2.37 GB / 15.77 GB Binaries: Node: version: 18.17.0 path: C:\Program Files\nodejs\node.EXE Yarn: Not Found npm: version: 10.1.0 path: C:\Program Files\nodejs\npm.CMD Watchman: Not Found SDKs: Android SDK: Not Found Windows SDK: Not Found IDEs: Android Studio: AI-223.8836.35.2231.10406996 Visual Studio: Not Found Languages: Java: 11.0.20 Ruby: Not Found npmPackages: "@react-native-community/cli": Not Found react: installed: 18.2.0 wanted: 18.2.0 react-native: installed: 0.73.2 wanted: 0.73.2 react-native-windows: Not Found npmGlobalPackages: "*react-native*": Not Found Android: hermesEnabled: true newArchEnabled: false iOS: hermesEnabled: Not found newArchEnabled: Not found ...
Stacktrace or Logs
info Opening app on Android... TypeError [ERR_INVALID_CHAR]: Invalid character in header content ["X-React-Native-Project-Root"] at ServerResponse.setHeader (node:_http_outgoing:651:3) at statusPageMiddleware (C:\Users\kikou\OneDrive\المستندات\ReactNative projects\algbnb\client\node_modules\@react-native-community\cli-server-api\build\statusPageMiddleware.js:19:7) at call (C:\Users\kikou\OneDrive\المستندات\ReactNative projects\algbnb\client\node_modules\connect\index.js:239:7) at next (C:\Users\kikou\OneDrive\المستندات\ReactNative projects\algbnb\client\node_modules\connect\index.js:183:5) at next (C:\Users\kikou\OneDrive\المستندات\ReactNative projects\algbnb\client\node_modules\connect\index.js:161:14) at next (C:\Users\kikou\OneDrive\المستندات\ReactNative projects\algbnb\client\node_modules\connect\index.js:161:14) at next (C:\Users\kikou\OneDrive\المستندات\ReactNative projects\algbnb\client\node_modules\connect\index.js:161:14) at next (C:\Users\kikou\OneDrive\المستندات\ReactNative projects\algbnb\client\node_modules\connect\index.js:161:14) at nocache (C:\Users\kikou\OneDrive\المستندات\ReactNative projects\algbnb\client\node_modules\nocache\index.js:11:5) at call (C:\Users\kikou\OneDrive\المستندات\ReactNative projects\algbnb\client\node_modules\connect\index.js:239:7)
Screenshots and Videos
The text was updated successfully, but these errors were encountered: