Home Ask Us Parcel Error – module not found @parcel\fs-search\fs-search.win32-x64-msvc.node

Parcel Error – module not found @parcel\fs-search\fs-search.win32-x64-msvc.node

by Anup Maurya
1 minutes read

In this article, we’ll learn how to resolve Parcel Error – module not found @parcel\fs-search\fs-search.win32-x64-msvc.node.

Solution 1 : If using Parcel v1

In some computer for any reason Parcel v2 does not work when you use “npx parcel src/index.html” and return the error “Error – module not found @parcel\fs-search\fs-search.win32-x64-msvc.node”. 

You can solve the problem using Parcel v1 : npm install -D parcel-bundler

Solution 2 : If using Parcel v2

For parcel 2, The issue is because the package is failing due to a missing library on the computer. fs-search requires Microsoft Visual C++ 2015 Redistributable (x64).

You can get the download here -> https://aka.ms/vs/17/release/vc_redist.x64.exe

related posts

Leave a Comment