Questions tagged [node-fibers]

A fiber is a particularly lightweight kernel thread scheduler dependent thread of execution using co-operative multitasking.

A fiber is a particularly lightweight thread of execution.

Like threads, fibers share address space. However, fibers use co-operative multitasking while threads use pre-emptive multitasking. Threads often depend on the kernel's thread scheduler to preempt a busy thread and resume another thread; fibers yield themselves to run another fiber while executing.

node-fiber introduces Fiber support for v8 and Node JS

Source: Wikipedia

114 questions
0
votes
0 answers

Replacement for node-fibers in Node 16

I am using node-fibers for webpack.config.js and I want to upgrade my Node version. Is there any replacement package that does what fibers does? Is my only option to refactor code at the moment? webpack.config.js: loader: 'sass-loader', …
Roh
  • 311
  • 1
  • 10
0
votes
1 answer

Travis-CI giving errors during commit

I have a JavaScript application called JSFBP - https://github.com/jpaulm/jsfbp - using node-fibers, which has started giving Travis errors - as of Oct. 25. The log file is https://travis-ci.org/jpaulm/jsfbp/jobs/615992765 . Could a node-fibers…
Paul Morrison
  • 1,694
  • 3
  • 20
  • 35
0
votes
0 answers

Meteor not running showing issue with node-fiber

I have a meteor project. It was running two days before. Now I am getting the following error. ## There is an issue with `node-fibers` ## W20181017-19:00:42.197(7)? (STDERR) D:\Work\store\node_modules\fibers\bin\win32-x64-57\fibers.node` is…
Mritunjay Upadhyay
  • 1,004
  • 1
  • 15
  • 27
0
votes
1 answer

Electron can't find fibers.node

I'm getting an error in my electron app: ## There is an issue with node-fibers ## ...\node_modules\fibers\bin\win32-x64-57\fibers.node is missing. I tried this to fix it: cd .\node_modules\fibers node build And I get this output: win32-x64-57…
Gunnar Marino
  • 83
  • 3
  • 8
0
votes
1 answer

Error: wait.for can only be called inside a fiber

I have 2 scipts almost identical with a cascade of function calls nested in a fiber. This one (parsing Tx in a blockchain) with three calls works perfectly wait.launchFiber(blockchain) function blockchain() { foreach block { parseBlock…
jfjobidon
  • 327
  • 5
  • 18
0
votes
1 answer

Node (Sync/Synchronize) cannot find fibers binaries

I know, that many have already had this problem and I tried every solution I could find, but nothing helped... I'm aware of this question, but it didn't work for me :( The problem: It says: node_modules\fibers\bin\win32-ia32-53\fibers.node is…
CiriousJoker
  • 552
  • 1
  • 7
  • 18
0
votes
1 answer

How to npm install node-fibers on intranet?

It looks like fibers is trying to talk to 104.20.23.46:443 but since I don't have an internet connection it fails. Is there any way to get around this? npm install node-fibers-1.0.5.tar.gz > fibers@1.0.5 install…
Takkun
  • 6,131
  • 16
  • 52
  • 69
0
votes
1 answer

How to make a webservice call synchronous in meteor

I am trying to call a simple weather service synchronously in meteor. I am not even able to make the client creating synchronous. In the code below I expect user.testData to contain "test data" but it contains nothing. if (Meteor.isClient) { …
yusha uzumo
  • 211
  • 1
  • 4
  • 15
0
votes
1 answer

"no template named 'WeakCallbackData' in namespace 'v8'" error when installing npm packages

Some packages that depend on https://www.npmjs.com/package/fibers fail to install with error message above. Particularly it is iron-meteor. Homepage of the fibers states: meteor users please read this If you're trying to get meteor running and you…
0
votes
1 answer

Meteor Fibers error - across different versions of Meteor

I have 3 meteor applications all at different versions App#1 (v1.2.1) App#2 (v1.3.2.1) App#3 (v1.4.1) Apps #1 & #3 are running fine. But App#2 gets the following error message module.js:340 Error: Cannot find module 'fibres' In desperation, I…
0
votes
1 answer

AMPL optimization - different cable types

My and my friends are working on an AMPL project. The goal of the project is to maximize profit in a fiber-to-the-home network. Network works without routers or splitters, only nodes with cabinets where one cable with x fibers can be split into…
terielon
  • 1
  • 1
0
votes
1 answer

NativeScript installation Errors - npm fibers

Notes: Node version 7.0.0 JavaJDK version 1.8.0.112 Android API 22 and studio installed: I have been following the installation instructions on the native script website and am failing to get it to install at all. I have setup all my environment…
John
  • 114
  • 10
0
votes
1 answer

Not able tio install WebdriverIO Cucumber JS framework on windows 7 64 bit

npm install wdio-cucumber-framework --save-devfails with this error. same happens for wdio-mocha-framework.Looks like something wrong with node fibers. fibers@1.0.15 install C:\src\webdriverio-browserstack\node_modules\fibers node build.js ||…
Prasanjit
  • 285
  • 2
  • 6
0
votes
2 answers

Meteor mup deploy fibers error

i get the following error when i try to mup deploy Building Started: /Users/../....... Started TaskList: Deploy app 'meteor' (linux) [195.30.108.227] - Uploading bundle [195.30.108.227] - Uploading bundle: SUCCESS [195.30.108.227] - Setting up…
Sven Delueg
  • 1,001
  • 11
  • 23
0
votes
1 answer

Meteor.call and server methods not working properly

I have this code on my meteor app: // client side Template.lead.events({ 'submit .insertExternalAccountForm': function (event) { event.preventDefault(); Session.set('mcsStatus', 'Creating external account ...'); var…
maumercado
  • 1,453
  • 4
  • 23
  • 47