أضف في ملف .env:
ACCOUNTS_COUNT=10
THREADS_COUNT=3ثم شغّل:
npm start# إنشاء 10 حسابات بـ 3 threads متزامنة
npm start -- --accounts=10 --threads=3
# أو بشكل مختصر
npm start -- -a=10 -t=3ACCOUNTS_COUNT=10 THREADS_COUNT=3 npm startnpm start
# أو
npm start -- --accounts=1 --threads=1npm start -- --accounts=5 --threads=1npm start -- --accounts=20 --threads=5npm start -- --accounts=100 --threads=10-
عدد البروكسيات: تأكد من وجود عدد كافٍ من البروكسيات في
config/proxies.txt- إذا كان لديك 5 بروكسيات وطلبت 10 threads، سيتم إعادة استخدام البروكسيات
-
الأداء:
- عدد threads أكبر = أسرع لكن استهلاك موارد أكبر
- عدد threads أقل = أبطأ لكن أكثر استقراراً
-
النتائج:
- النتائج تُحفظ في
results.json - الملخص يُحفظ في
summary.json
- النتائج تُحفظ في
-
السجلات:
- جميع السجلات في مجلد
logs/ - كل thread له رقم معرّف في السجلات
- جميع السجلات في مجلد
ACCOUNTS_COUNT=1(حساب واحد)THREADS_COUNT=1(thread واحد)
=== Gmail Account Creator Bot Started ===
Configuration: {
accountsCount: 10,
threadsCount: 3,
proxyCount: 50,
availableProxies: 50
}
Starting creation of 10 accounts with 3 concurrent threads
[Thread 1] Starting account creation 1/10
[Thread 2] Starting account creation 2/10
[Thread 3] Starting account creation 3/10
...
=== Execution Summary ===
Statistics: {
total: 10,
completed: 8,
failed: 2,
successRate: '80.00%',
duration: '245.30s',
averageTime: '24.53s per account'
}