git404hub

what is wechat-article-search fr?

zjp1997720/wechat-article-search — explained in plain English

Analysis updated 2026-05-18

209JavaScriptAudience · developerComplexity · 2/5LicenseSetup · easy

tl;dr

A command line tool that searches WeChat public account articles by keyword and returns structured results, no API key needed.

vibe map

mindmap
  root((wechat-article-search))
    What it does
      Searches WeChat articles
      Returns structured JSON
      Optional URL resolution
    Tech stack
      Node.js
      cheerio
      Sogou WeChat Search
    Use cases
      Topic discovery on WeChat
      Agent skill for AI assistants
    Audience
      Developers
      AI agent builders

Code map

Detail Auto

An interactive map of this repo's files and how they connect — its source is parsed live in your browser. Click Visualize to build it.

filefunction / class

what do people make with this?

VIBE 1

Search WeChat public accounts for articles on a topic without an account.

VIBE 2

Save structured search results as a JSON file for later use.

VIBE 3

Install as a skill so an AI coding assistant can search WeChat on request.

VIBE 4

Resolve Sogou redirect links into direct WeChat article URLs.

what's the stack?

Node.jscheerioJavaScript

how it stacks up fr

zjp1997720/wechat-article-searchatom/snippetsgaearon/promise-loader
Stars209207213
LanguageJavaScriptJavaScriptJavaScript
Last pushed2023-03-152016-08-02
MaintenanceDormantDormant
Setup difficultyeasyeasymoderate
Complexity2/51/53/5
Audiencedeveloperdeveloperdeveloper

Figures from each repo's GitHub metadata at analysis time.

how do i run it?

Difficulty · easy time til it works · 5min

Requires Node.js 18+ and running npm install for the cheerio dependency.

Use freely for any purpose, including commercial use, as long as you keep the copyright notice.

in plain english

WeChat Article Search is a small developer tool that lets you look up public articles on WeChat, a hugely popular Chinese social platform, without needing an account or an API key. You give it a keyword, and it searches through WeChat public accounts, which work like public pages or blogs on the platform, using Sogou WeChat Search, a separate search engine that indexes WeChat content, and returns a list of matching articles. Each result comes back as structured data rather than a messy web page: the title, the article's link, a short summary, when it was published, and the name of the account that posted it. There is an optional setting that tries to convert the search engine's redirect links into the real WeChat article links, though this does not always work because WeChat actively blocks automated requests. Another option lets you save the results directly to a file instead of just printing them on screen. Under the hood, the tool is a single Node.js script that fetches search result pages and reads the HTML with a library called cheerio, which is commonly used to pull information out of web pages. It needs Node.js version 18 or newer, plus one extra package installed before first use. There are no other accounts, keys, or paid services required. The project describes itself as a skill meant to be installed into AI coding assistants such as Codex, so an assistant can search WeChat articles on a user's behalf when asked. Because it relies on scraping a search engine that resists automated traffic, results can occasionally come back empty or fail to resolve to direct links, and the README warns against heavy or commercial scraping to avoid getting temporarily blocked. It is licensed under MIT, which allows free use, including commercial use, as long as the license is kept.

prompts (copy fr)

prompt 1
Search WeChat articles about a topic and give me the top 10 results.
prompt 2
Run the wechat-article-search script and save the output to result.json.
prompt 3
Show me how to install this as a skill for my coding assistant.
prompt 4
Explain how this tool resolves Sogou redirect links into real WeChat URLs.

Frequently asked questions

what is wechat-article-search fr?

A command line tool that searches WeChat public account articles by keyword and returns structured results, no API key needed.

What language is wechat-article-search written in?

Mainly JavaScript. The stack also includes Node.js, cheerio, JavaScript.

What license does wechat-article-search use?

Use freely for any purpose, including commercial use, as long as you keep the copyright notice.

How hard is wechat-article-search to set up?

Setup difficulty is rated easy, with roughly 5min to a first successful run.

Who is wechat-article-search for?

Mainly developer.

peek the repo → explain another one

This repo across BitVibe Labs

double-check against the repo, no cap.