# javascript
How to Use the 2captcha-solver Plugin in Puppeteer
In the previous article, I introduced a useful captcha service 2Captcha to you. In this article, we will describe how to use the 2captcha-solver plugin with Puppeteer.
Browser JavaScript Implements RSA Private Key Decryption
Use browser js to realize RSA private key decryption.
Install Bun for Windows: A Modern JavaScript Runtime Like Node or Deno
Recently, a project called Bun in the front-end tool chain has become popular. Bun is a new JavaScript runtime with built-in bundler, transpiler, task runner and npm client.
How to Bypass Captcha Automatic Login with Nodejs Playwright 2Captcha
When we log in to the website, we often see verification codes. The purpose of verification codes is to prevent machine logins and automate script operations. Is there a way for scripts to automatically identify verification codes to achieve login?
Pnpm Changesets Publish npm Packages
pnpm Monorepo multi-package project, using changesets to publish npm packages.
Fix Circular Module Dependencies in JavaScript & TypeScript
In js modular development, we often encounter the problem of circular dependencies and report errors: Super expression must either be null or a function.
DIV Sets a Pseudo Class Bottom Border
You can use CSS pseudo-elements (::after or ::before) to set a pseudo-class bottom border for div elements.
Custom JSX Factory Function
We usually use jsx in react projects. How to parse jsx without using react?
npm run dev Error: error:0308010C:digital envelope routines::unsupported
For next 13 project, an error was reported when running npm run dev.
How to Implement an Event Bus in JavaScript
The Event Bus is usually used as a communication mechanism between multiple modules, which is equivalent to an event bus. One module sends messages, and other modules receive messages, which achieves the function of communication.