ani-web is a lightweight Node.js application that lets you browse and watch anime through a clean and responsive frontend running entirely on your machine.
Based on a lightweight architecture, ani-web includes:
- Performance First: Designed specifically to run smoothly on low-end hardware.
- Built-in Search & Discovery: Easily find top trending and popular shows.
- Watchlist Management: Keep track of what you're watching, completed, or planning to watch.
- User Insights: View your personal anime watching statistics.
- MAL Integration: Seamlessly import your lists from MyAnimeList.
- Node.js: Version 22.5.0 or higher (Download here).
Open a terminal and run:
npm install -g ani-webNote: After the one-time setup, you can start the application anytime, from any directory, by simply opening a terminal and typing
ani-web.
If you need to remove the application from your system, simply open a terminal and run:
npm uninstall -g ani-webThis safely deletes the application files and removes the ani-web command from your system's PATH.
Want to poke around the source code or contribute? You can build the project manually.
1. Clone the repository:
git clone https://github.com/serifpersia/ani-web.git
cd ani-web2. Install, Build, and Run: Use provided run scripts that offer a menu to choose between a Development or Production setup. To run a development environment manually:
- Run
npm installto install core dependencies. - Run
npm run setupto install development tools (Vite, TypeScript, etc). - Run
npm run buildto build the source code.
On Linux / macOS:
chmod +x run.sh
./run.shOn Windows:
run.batOnce installed globally, you can use the following commands:
ani-web- Start the application.ani-web --version(or-v) - Check your installed version.
ani-web stores your persistent files in your OS app-data folder instead of inside the globally installed npm package:
- Windows:
%APPDATA%\ani-web - macOS:
~/Library/Application Support/ani-web - Linux:
$XDG_DATA_HOME/ani-webor~/.local/share/ani-web
This folder contains your .env, database files, sync manifests, and Google token file. Existing installs will automatically migrate legacy files from the old server/ folder on first launch when those files are still present.
ani-web can automatically sync your watchlist and settings to the cloud. There are two ways to set this up:
To use the native Google Drive integration, you need to provide your own Google Cloud credentials:
- Go to the Google Cloud Console.
- Create a new project and enable the Google Drive API.
- Configure the OAuth Consent Screen (set it to "External" and add yourself as a test user).
- Create OAuth 2.0 Client IDs (Application type: "Web application").
- Add
http://localhost:3000/api/auth/google/callbackto the Authorized redirect URIs. - Open ani-web, go to Settings -> Google Drive, and enter your Client ID and Client Secret.
ani-web will automatically handle the rest, including creating your configuration and syncing your data!
If you prefer using Mega, Dropbox, or other providers, you can use Rclone:
- Install Rclone on your system and ensure it's in your PATH.
- Configure a remote (any name) using
rclone config. - In ani-web Settings, select your remote name from the dropdown.
Note: If Google Drive Sync is active, it will always take priority over Rclone.
ani-web does not host, upload, or manage any video content.
The core aim of this project is to provide a streamlined, automated interface to extract publicly accessible content from the internet. All media served through this application is hosted by external, non-affiliated third-party sources.
Click to read the full Legal Disclaimer & DMCA info
- The Browser Analogy: Think of
ani-webas a specialized web browser. While a standard web browser makes hundreds of requests to download a site's HTML, CSS, ads, and trackers, this project simply makes requests specifically targeted at the media content served by those sites. - User Responsibility: A browser is merely a tool, and the legality of its use depends entirely on the user. This software is provided "as-is", and it is to be used at the user's own risk, in accordance with their local laws and government regulations. The developer is not responsible for what users choose to access.
- DMCA & Copyright: Because
ani-weboperates entirely via client-side access mechanisms and hosts absolutely zero content, any DMCA takedown notices or copyright infringement claims must be directed to the external, third-party services that actually host the files.
This project is open-source and licensed under the MIT License - see the LICENSE file for details.

