Unable to use Parcel (Windows x64)
See original GitHub issueDiscussed in https://github.com/parcel-bundler/parcel/discussions/7593
- Parcel 2.2.1
** Expected Behavior **
Running npx parcel ./src/index.html
to launch dev server.
** Actual Behavior**
Running npx parcel ./src/index.html
usually does nothing. A slight pause on the terminal before returning a new prompt. On rare occasion, the dev server has started, but when closed with Ctrl-C and restarted, fails.
Edit: With Yarn: Command failed with exit code 3221225477
** Environment **
- Windows 10 (19043) x64
- Node v16.13.2 x64 (and v14 also failed)
- Launch via powershell in VS Code terminal (non-admin account, also tried with admin privileges)
Issue Analytics
- State:
- Created 2 years ago
- Reactions:5
- Comments:12 (3 by maintainers)
Top Results From Across the Web
module not found @parcel\fs-search\fs-search.win32-x64 ...
The issue caused due to missing library on the computer. fs-search requires Microsoft Visual C++ 2015 Redistributable (x64).
Read more >Error when installing parcel-bundler - Lesson 42 Part 3
Hello everyone. This is not my code, since I've already solved the problem and my terminal was cleared when restarting the app.
Read more >Microsoft .NET Framework 4.7.2 offline installer for Windows
The offline package can be used in situations in which the web installer cannot be used because of a lack of Internet connectivity....
Read more >DISM Operating System Package (.cab or .msu) Servicing ...
Displays detailed information about a package provided as a .cab file. Only .cab files can be specified. You cannot use this command to ......
Read more >Get started with Package Support Framework - MSIX
In the first issue that appears in this image, the application is failing to read from the "Config.txt" file that is located in...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I think we narrowed this down to an upgrade of napi-rs in the
@parcel/source-map
package, which was released sometime after Parcel 2.2.1. I still don’t know the exact root cause, but for now I’ve reverted this upgrade and published@parcel/source-map
v2.0.2. See https://github.com/parcel-bundler/source-map/pull/91.You’ll need to remove
@parcel/source-map
2.0.1 from your lock file and re-install to get the upgrade. Please comment whether this works for you. Apologies again for the issue, and thanks for your patience while we track it down.Does it work for anyone if you set the
PARCEL_WORKER_BACKEND=process
environment variable?