/node_modules/fibers/bin/linux-x64-v8-7.6/fibers.node` is missing. Try reinstalling `node-fibers`

 Node Fibers is a tool that exposes an API to jump between multiple call stacks from within a single thread. This can be useful to make code written for asynchronous libraries play nicely in an asynchronous environment. With Angular 11 it is required to install to compile the app.

At the compile time you might get the issue /node_modules/fibers/bin/linux-x64-v8-7.6/fibers.node` is missing. Try reinstalling `node-fibers`or something like this.

To solve the issue follow the steps:

1. Uninstall node-fibers if already installed.

npm uninstall fibers

2. Reinstall node-fibers

npm install fibers

3. Go inside fibers location.

cd node_modules/fibers

 4. Execute build.js of fibers module to build for you system.

node build.js

Now fibers will be available accourding your node version and OS. Now compile your app.

 



Keywords: