mrkeyoor.com_
Tue 01 Sept 17:43 UTC
Automationevaluationupdated 26 Aug 2026

EasySpider review

EasySpider is a Chinese-first visual web crawler with partial English documentation. It lets people build browser automation and data-collection flows by selecting page elements, arranging actions, and running the saved task through a desktop interface or command line.

+37stars / 7d
Verdict

Our install pulled 468 packages and 392 MB in 40 seconds, while npm audit found 45 known vulnerabilities, so EasySpider deserves a disposable-machine trial before any sensitive login is used. Its visual selector and flowchart can save non-programmers real time on browser-bound collection. Choose it for Chinese-first desktop workflows, but demand your own security review, regression checks, and AGPL plan before operational use.

We ran it

Lab card: what happened when we ran EasySpiderScreenshot of EasySpider (www.easyspider.net)
Install✓ · 40s468 packages · 392 MB
Buildn/ano build script
Testsn/ano test script
Known vulns451 critical · 39 high · 3 moderate · 2 low (npm audit)
Repo1740 files~117,425 lines of source · 95.5 MB · 0 CI workflows

Answers from our run

Does EasySpider build from source?

Dependencies installed in 40 seconds (468 packages), and the project has no separate build step. We cloned commit 6ddb478 into a clean Debian container with 3 CPUs and no project-specific setup.

Does EasySpider have tests you can run?

Not through a standard command: the project exposes no test script or target that our harness could run.

Does EasySpider have known vulnerabilities in its dependencies?

npm audit flagged 45 known advisories in the dependency tree, including 1 critical at the time of our run.

Who should not use EasySpider?

Teams that require an English-only support path: the README is bilingual in places, but the wiki, many videos, issue discussions, and detailed guidance are Chinese-first.

What are the alternatives to EasySpider?

Maxun, Crawlee, Scrapy. Our install pulled 468 packages and 392 MB in 40 seconds, while npm audit found 45 known vulnerabilities, so EasySpider deserves a disposable-machine trial before any sensitive login is used.

Setup3/5Release packages help; source spans Chrome, Electron, and Python
Docs3/5Detailed Chinese material with partial English coverage
Community4/5August 2026 release and active issue and PR traffic
Maturity3/5Capable desktop workflow, but audit and test gaps remain

Who it’s for

Chinese-speaking analysts who need repeatable browser scraping without writing a crawler from scratch.
Developers who want a visual task designer plus a command-line execution stage.
Teams collecting from JavaScript-heavy pages that need real browser interaction.
Users willing to test workflows whenever a target site's markup or login flow changes.

Who it’s NOT for

Teams that require an English-only support path: the README is bilingual in places, but the wiki, many videos, issue discussions, and detailed guidance are Chinese-first.
Security-sensitive organizations expecting a clean dependency audit: our npm audit found 45 known vulnerabilities, including 1 critical and 39 high.
Maintainers wanting a small conventional Electron build: the compile guide separates the extension, desktop designer, and execution stage, and requires matching Chrome and ChromeDriver assets.
SaaS vendors unwilling to meet AGPL-3.0 source-sharing duties for modified network services.
Buyers who need repository-level release gates: our scan found no CI workflow and no test target in the measured Electron project.

Setup reality

Our sandbox installed 468 npm packages in 40 seconds and used 392 MB on disk. The ElectronJS project had no build script or test target, so both steps were skipped. npm audit reported 45 known vulnerabilities: 1 critical, 39 high, 3 moderate, and 2 low.

A released desktop package is the practical route. Source work spans the browser extension, Electron designer, and separate execution stage; the guide also requires Chrome, a matching ChromeDriver, Python, and Windows build tools on that platform.

The 95.5 MB checkout contained 1,740 files and about 117,425 source lines. Our scan found no CI workflow, Dockerfile, or tests directory, so adopters must define their own checks for packaged tasks and target-site changes.

Visual selection replaces selector code for common collection jobs

EasySpider's central interaction is easy to understand. Right-click a product card or title, let the tool identify similar elements, choose the fields to collect, and save the result as a task. A loop can open each detail page before collecting more fields. The screenshots show a flowchart where users add conditions, scrolling, text input, screenshots, custom JavaScript, and Python-backed operations without hand-writing a browser driver.

That approach suits changing research tasks better than a one-off spreadsheet macro. The README includes examples for logged-in pages, pagination, OCR, IP switching, scheduled runs, parallel tasks, image downloads, and MySQL output. Saved examples can be copied into the tasks directory and opened in the designer. Command-line execution lets another system launch a finished task after a person has designed it visually.

The 3-part architecture makes source builds demanding

EasySpider is split into an Electron main program, a browser extension, and an execution-stage program. The compilation guide gives an order because the pieces depend on each other. Build the extension first or the main program cannot find its packaged extension. Build only Electron and you can design tasks but cannot execute them. The execution stage must then be placed with the browser assets for packaging.

Chrome and ChromeDriver versions must match. The guide describes copying a Chrome installation into a platform-named directory, adding the matching driver, and copying execution scripts into that folder. Windows source builds also call for Python 3 and Visual C++ Build Tools because a native module uses node-gyp. Released binaries avoid much of this work and are the sensible first evaluation path.

Version 0.6.5 lists Windows 10 or Windows Server 2016 and newer on 64-bit systems. Its macOS packages require macOS 11.1 or newer and distinguish Apple and Intel chips. Linux packages target Ubuntu 20.04 or newer, Deepin, Debian, and derivatives. Other distributions may require a source build, which returns the buyer to the 3-part packaging process.

What happened when we ran it

Our run cloned commit 6ddb478 into a fresh unprivileged Node 22 container with 3 CPUs, 8 GB of RAM, and no secrets. npm installed 468 packages in 40 seconds, leaving 392 MB of dependencies on disk. The project lives under ElectronJS/, and that package exposed no build script or test target, so we skipped those steps.

The repository was much larger than the desktop package manifest suggests: 1,740 files, roughly 117,425 lines of source, and a 95.5 MB checkout. Our scan found 0 CI workflow files, no Dockerfile, and no tests directory. These figures do not say the released app fails. They say the measured checkout offered no automated build or test result for us to use as a release confidence signal.

npm audit reported 45 known vulnerabilities: 1 critical, 39 high, 3 moderate, and 2 low. The audit count does not prove that every advisory is reachable in the packaged desktop application. It is still too large to wave away, especially for software that can hold cookies and automate authenticated pages. Map each advisory to production code before allowing sensitive accounts or network access.

Version 0.6.5 addresses local-service security, but review is still needed

The August 19, 2026 release says local services now bind only to loopback and restrict allowed cross-origin requests. It also says expression replacements received literal escaping to reduce code-injection risk, process termination moved away from shell commands, and a local stop service now uses a random port plus secret validation. Those changes respond to a class of desktop automation risks worth taking seriously.

An open issue describes an unauthenticated WebSocket on port 8084 exposing browser cookies in version 0.6.3. Because that report names an older commit and v0.6.5 claims loopback and origin restrictions, it would be wrong to call the exact report confirmed against the latest release. A security review should reproduce the current packaged build, verify which services listen, and confirm that sensitive commands require the intended trust boundary.

The desktop app often works with logged-in browser sessions, so isolation matters even on a local machine. Use a dedicated browser profile and low-privilege test accounts during evaluation. Keep the service off shared hosts until its listening ports and task inputs are understood. A visual flow does not make downloaded scripts, custom code, or collected data harmless.

Chinese-first documentation is useful but uneven for global teams

The opening explanation, usage examples, license summary, and compilation guide contain English translations. The repository also links an English YouTube playlist. Much of the deeper material is Chinese: wiki pages, Bilibili tutorials, support groups, screenshots, and issue discussions. Machine translation can help, but it adds friction during debugging when exact menu labels and task fields matter.

Project activity is current. GitHub recorded a push on 2026-08-19, the same date as release v0.6.5, and listed 272 open issues and pull requests combined. Issues and pull requests remained active on 2026-08-24. That queue shows attention and user demand, while its size means buyers should search for their target site, browser version, and operating system before committing.

AGPL terms matter when the executor becomes a service

EasySpider uses AGPL-3.0 and says individuals and companies may use and modify it without buying a commercial patent license. The README also explains its view of the network-use requirement: modified software offered as a service must make corresponding source available to users. A company embedding the command-line executor behind an API should have counsel review its distribution and source-offer plan.

For personal research or an internal trial, EasySpider offers an unusually direct route from pointing at a page to collecting structured fields. The trade is control. A code-first crawler makes selectors, retry behavior, and reviews explicit in source. EasySpider puts more of that behavior into task files and a desktop runtime, so teams need their own versioning, regression pages, and data-handling rules.

Alternatives

ProjectWhat it isPick it when
MaxunA visual browser automation and web-data extraction platform with self-hosting support.pick this instead when a web-based recorder and team-oriented self-hosted service fit better than a desktop designer.
Crawlee gh↗A code-first JavaScript and Python library for browser and HTTP crawling.pick this instead when engineers want crawlers in source control with explicit code, queues, and testable handlers.
Scrapy gh↗A mature Python framework for structured, high-volume crawling and extraction.pick this instead when HTTP crawling and code-level control matter more than visual browser recording.

What people are saying

  1. [github-trending] NaiboWang/EasySpider

Sources

  1. EasySpider README
  2. EasySpider compilation instructions
  3. EasySpider v0.6.5 release
  4. WebSocket security report for v0.6.3

More automation reviews

rclone · lego · OpenCLI · web-access · Karabiner-Elements · WiiUDownloader · the whole board →