2024-12-16 23:37:49 -05:00
# modules
2025-02-17 20:02:48 -05:00
data/docs: add updates for pif v18.6, stevenblock v1.6.7-v1.6.8, televip v1.4.6, zygisk assistant v2.1.4 & v2.1.0-v2.1.2, zygisknext v1.2.7, bindhosts v1.7.9-v1.9.8, android native root detector v6.6.7 & v6.6.3-v6.6.5, magisk alpha b62835cb.latest, iconify v7.1.0, dnsnet v1.0.18, kernelsu-next v1.0.5, remove deleted module (speedsaver), correct zygisknext, android native root detector, kernelsu-next, and bindhosts github link, fix dnsnet description, add impact of issue to iconify to readme
2025-03-01 17:15:06 -05:00

2024-12-16 23:37:49 -05:00
[](http://unlicense.org/)
[](https://t.me/pontushub)
2025-03-01 21:33:25 +00:00
[](https://github.com/ihatenodejs/modules/actions/workflows/docker.yml)
[](https://github.com/ihatenodejs/modules/actions/workflows/bump.yml)
[](https://github.com/ihatenodejs/modules/actions/workflows/codacy.yml)
2024-12-16 23:37:49 -05:00
An open-source Magisk modules and root/FOSS app store
This is my first project which uses `bun` .
2024-12-23 00:49:51 -05:00
Modules does **NOT** host the modules themselves, and only provides downloads to third-party sources. Its database is open source, and is the `apps.json` and `modules.json` files.
2024-12-16 23:37:49 -05:00
Unless a module is labeled `SelfHost` , I am not hosting the file in question.
2025-03-01 21:33:25 +00:00
An Android version of Modules is in the works [here ](https://git.pontusmail.org/aidan/modules-android )
2025-02-17 20:02:48 -05:00
## Contributing
2024-12-16 23:37:49 -05:00
If you would like to contribute, please know I appreciate it very much!
2025-03-01 17:17:58 -05:00
The backend works on Node.js with Express, EJS, and Tailwind CSS.
Each time the code is updated, make sure you run `bun run build:css` to build the latest CSS file for deployment.
2024-12-16 23:37:49 -05:00
You can either contribute code (start with `app.js` ) or your time to the `apps.json` database and `modules.json` . JSON formatting is pretty easy to learn.
Please create pull requests and issues, and be generally respectful and patient.
2025-02-17 20:02:48 -05:00
## Setting up and self-hosting
2024-12-16 23:37:49 -05:00
1. First, clone the repository:
2025-02-17 20:02:48 -05:00
2024-12-16 23:37:49 -05:00
```bash
git clone https://github.com/ihatenodejs/modules.git
```
2025-02-17 20:02:48 -05:00
2024-12-16 23:37:49 -05:00
2. Next, let's install Bun (if you don't already have it). You can see more about Bun [here ](https://bun.sh/ ).
2025-02-17 20:02:48 -05:00
2024-12-16 23:37:49 -05:00
**Windows (PowerShell)**
2025-02-17 20:02:48 -05:00
```powershell
2024-12-16 23:37:49 -05:00
powershell -c "irm bun.sh/install.ps1 | iex"
```
2025-02-17 20:02:48 -05:00
2024-12-16 23:37:49 -05:00
**Linux/macOS:**
2025-02-17 20:02:48 -05:00
2024-12-16 23:37:49 -05:00
```bash
curl -fsSL https://bun.sh/install | bash
```
2025-02-17 20:02:48 -05:00
2024-12-16 23:37:49 -05:00
3. Now, let's install everything with:
2025-02-17 20:02:48 -05:00
```bash
2024-12-16 23:37:49 -05:00
bun install
```
2025-02-17 20:02:48 -05:00
2024-12-16 23:37:49 -05:00
4. After that, we'll build the Tailwind CSS:
2025-02-17 20:02:48 -05:00
```bash
2024-12-16 23:37:49 -05:00
bun run build:css
```
2025-02-17 20:02:48 -05:00
2024-12-16 23:37:49 -05:00
5. Finally, we start the server on port `3000` :
2025-02-17 20:02:48 -05:00
```bash
2024-12-16 23:37:49 -05:00
bun app.js
```
2024-12-17 00:04:42 -05:00
Your server can now be accessed at http://localhost:3000, and can be used in conjunction with a reverse proxy to get a functional site up.
2024-12-23 00:41:02 -05:00
2025-02-17 20:02:48 -05:00
## Contributing/Tagging Guidelines
### Apps
2025-03-01 17:17:58 -05:00
- `SelfHost` : If you are hosting the file yourself (or it is on my server), please add the `SelfHost` tag to the module. This will allow users to know that the file is hosted apart from the original source location or one is not available and must be self-hosted. Always use a trusted source (e.g., GitHub) when possible.
2024-12-30 19:54:28 -05:00
- `Root` : If the module requires root access, please add the `Root` tag to the module.
- `FOSS` : If the module is open-source, please add the `FOSS` tag to the module.
2025-02-17 20:02:48 -05:00
### Modules
2025-03-01 17:17:58 -05:00
- `SelfHost` : If you are hosting the file yourself (or it is on my server), please add the `SelfHost` tag to the module. This will allow users to know that the file is hosted apart from the original source location or one is not available and must be self-hosted. Always use a trusted source (e.g., GitHub) when possible.
2024-12-30 19:54:28 -05:00
- `FOSS` : If the module is open-source, please add the `FOSS` tag to the module.
- `Zygisk` : If the module requires Zygisk, please add the `Zygisk` tag to the module.
- `LSPosed` : If the module requires/includes LSPosed (support), please add the `LSPosed` tag to the module.
- `Riru` : If the module requires/includes Riru (support), please add the `Riru` tag to the module.
2025-02-17 20:02:48 -05:00
### Guidelines
2024-12-30 19:54:28 -05:00
1. Always use a trusted source when possible.
2. All pull requests will be manually reviewed to ensure the quality/safety of the database.
3. Please be patient with the review process.
4. If you have any questions, please ask in the Telegram channel (see top of README).
2025-02-17 20:02:48 -05:00
## To-Do
2024-12-23 00:41:02 -05:00
- [ ] Add Docker documentation
- [ ] Add category support
- [ ] Support filtering by category
2025-01-07 18:14:26 -05:00
- [X] Add submissions (done via Telegram)
2025-02-07 06:55:05 +00:00
- [ ] Add button/prompting for submissions
2025-02-17 20:02:48 -05:00
- [ ] (Apps only) Add to Obtainium button
2024-12-23 00:41:02 -05:00
- [ ] Add search functionality
2025-01-21 14:58:44 +00:00
- [ ] Migrate frontend to Next
2025-01-10 01:01:07 -05:00
- [ ] Fix Issue #1 (See Issue < https: // github . com / ihatenodejs / modules / issues / 1 > )
2025-01-09 22:25:53 -05:00
2025-03-01 17:17:58 -05:00
→ Add JingMatrix LSPosed Riru release once done (broken by issue)
2025-01-09 22:32:13 -05:00
2025-03-01 17:17:58 -05:00
→ Add ReVanced microG Huawei release once done (broken by issue)
data/docs: add updates for pif v18.6, stevenblock v1.6.7-v1.6.8, televip v1.4.6, zygisk assistant v2.1.4 & v2.1.0-v2.1.2, zygisknext v1.2.7, bindhosts v1.7.9-v1.9.8, android native root detector v6.6.7 & v6.6.3-v6.6.5, magisk alpha b62835cb.latest, iconify v7.1.0, dnsnet v1.0.18, kernelsu-next v1.0.5, remove deleted module (speedsaver), correct zygisknext, android native root detector, kernelsu-next, and bindhosts github link, fix dnsnet description, add impact of issue to iconify to readme
2025-03-01 17:15:06 -05:00
2025-03-01 17:17:58 -05:00
→ Add Iconify multi-arch releases once done (broken by issue)