Coder Social home page Coder Social logo

Comments (2)

Balearica avatar Balearica commented on September 27, 2024 1

I assume you are talking about CloudFlare Workers. CloudFlare Workers do not use Node.js--they use a custom runtime that uses V8, and implements a handful of Node.js APIs. Therefore, the fact that the CloudFlare worker is deciding to use the browser path is probably an intentional design decision on CloudFlare's part.

The Workers runtime also implements a subset of Node.js APIs as an optional, opt-in compatibility layer.
https://developers.cloudflare.com/workers/runtime-apis/

Regardless of the browser vs. Node.js issue, the code in question is attempting to spawn a worker, and I do not believe it is possible to spawn a worker within a CloudFlare worker. For context, the Tesseract.js createWorker function spawns a worker that executes Tesseract jobs on a separate thread. This uses web workers in browser, and the worker_threads module in Node.js. My understanding of CloudFlare workers are that they are inherently single-threaded, so do not support spawning more threads.

To use Tesseract.js within a single thread, the worker code would need to be executed directly. Making the worker scripts run standalone would likely not be that difficult--this would presumably just require using src/worker-script/index.js directly after deleting the exports.dispatchHandlers stuff that communicates with the main thread.

from tesseract.js.

penkzhou avatar penkzhou commented on September 27, 2024

Thanks for your explanation. I will try your suggestion.

from tesseract.js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.