Top AI Repos — open-source AI, indexed and scored
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
CLI tool for saving a faithful copy of a complete web page in a single HTML file (based on SingleFile)
| Date | Stars |
|---|---|
| 2026-07-24 | 1504 |
| 2026-07-25 | 1508 |
| 2026-07-28 | 1515 |
| 2026-07-30 | 1519 |
| 2026-08-07 | 1530 |
| 2026-08-15 | 1536 |
| 2026-08-18 | 1540 |
| 2026-08-19 | 1544 |
| 2026-08-20 | 1547 |
| 2026-08-21 | 1548 |
| 2026-08-22 | 1550 |
| 2026-08-23 | 1551 |
| 2026-08-24 | 1556 |
| 2026-08-25 | 1562 |
| 2026-08-26 | 1563 |
| 2026-08-27 | 1567 |
| 2026-08-28 | 1567 |
| 2026-08-29 | 1569 |
| 2026-08-30 | 1573 |
| 2026-08-31 | 1576 |
| 2026-09-01 | 1577 |
| 2026-09-02 | 1579 |
| 2026-09-03 | 1578 |
| 2026-09-04 | 1582 |
| 2026-09-05 | 1584 |
| 2026-09-06 | 1586 |
| 2026-09-07 | 1587 |
| 2026-09-08 | 1586 |
| 2026-09-09 | 1589 |
| 2026-09-10 | 1591 |
| 2026-09-11 | 1595 |
| 2026-09-12 | 1599 |
| 2026-09-13 | 1600 |
| 2026-09-14 | 1607 |
| 2026-09-15 | 1610 |
| 2026-09-16 | 1612 |
| 2026-09-18 | 1616 |
| 2026-09-19 | 1618 |
| 2026-09-20 | 1620 |
Today
+2 stars today
This week
+20 stars this week
This month
+72 stars this month
Momentum
88.0
growth rate 1.25%/day
# SingleFile CLI (Command Line Interface)
## Introduction
[SingleFile](https://www.getsinglefile.com) can be launched from the command line by running it into a (headless) browser.
It runs through Deno as a standalone script injected into the web page via the Chrome DevTools Protocol, or via WebDriver BiDi when using Firefox, instead of being embedded into a WebExtension.
## Installation
SingleFile can be run without installing it, just download the executable file and save it in the directory of your choice here: https://github.com/gildas-lormeau/single-file-cli/releases
Make sure Chrome or a Chromium-based browser is installed in the default folder. Otherwise you might need to set the `--browser-executable-path` option to help SingleFile locating the path of the executable file. Firefox can be used instead by setting the `--browser-engine firefox` option, with some limitations described in the help.
## Installation with Docker
- Installation from Docker Hub
`docker pull capsulecode/singlefile`
`docker tag capsulecode/singlefile singlefile`
- Manual installation
`git clone --depth 1 --recursive https://github.com/gildas-lormeau/single-file-cli.git`
`cd single-file-cli`
`docker build --no-cache -t singlefile .`
- Run
`docker run singlefile "https://www.wikipedia.org"`
- Run and redirect the result into a file
`docker run singlefile "https://www.wikipedia.org" > wikipedia.html`
- Run and mount a volume to get the saved file in the current directory
- Save one page
`docker run -v %cd%:/usr/src/app/out singlefile "https://www.wikipedia.org" wikipedia.html`
(Windows)
`docker run -v $(pwd):/usr/src/app/out singlefile "https://www.wikipedia.org" wikipedia.html`
(Linux/UNIX)
- Save one or multiple pages by using the filename template (see
`--filename-template` option)
`docker run -v %cd%:/usr/src/app/out singlefile "https://www.wikipedia.org" --dump-content=false`
(Windows)
`docker run -v $(pwd):/usr/src/app/out singlefile "https://www.wikipedia.org" --dump-content=false`
(Linux/UNIX)
- An alternative docker file can be found here
https://github.com/screenbreak/SingleFile-dockerized. It allows you to save
pages from the command line interface or through an HTTP server.
## Manual installation
- Install [Deno](https://deno.com/)
- There are 3 ways to download the code of SingleFile, choose the one you prefer:
- Install with `npm` and run `single-file` via `npx` (`npm` and `npx` are installed with Node.js)
```sh
npm install "single-file-cli"
npx single-file ...
```
You can also install SingleFile globally with `-g` when running `npm install`.
- Download and unzip manually the
[master archive](https://github.com/gildas-lormeau/single-file-cli/archive/master.zip)
provided by Github
```sh
unzip master.zip .
cd single-file-cli-master
```
- Download with `git`
```sh
git clone --depth 1 --recursive https://github.com/gildas-lormeau/single-file-cli.git
cd single-file-cli
```
- Make `single-file` executable (Linux/Unix/BSD etc.).
```sh
chmod +x single-file
```
## Run
- Syntax
```sh
single-file <url> [output] [options ...]
```
- Display help
```sh
single-file --help
```
- Examples
- Dump the HTML content of https://www.wikipedia.org into the console
```sh
single-file https://www.wikipedia.org --dump-content
```
- Save https://www.wikipedia.org into `wikipedia.html` in the current folder
```sh
single-file https://www.wikipedia.org wikipedia.html
```
- Save a page needing a logged-in session. Create the profile first, log in
to the website in the browser window, and quit the browser to save it. Then
reuse the profile as many times as needed, it is copied and left unmodified.
```sh
single-file --create-browser-profile ./profiles/example https://www.example.com/login
single-file https://www.example.com/account account.html -Excerpt of 5,805 characters
Read on GitHubGildas · Capsule Code · France
818
2
Nick Sweeting · United States
2
1
1
1
1
Would you bet a product on this? Bounded 0–100 and slow moving.
matched fp:b40dee4471f8ca20, topic:web-scraping, topic:crawler