├── .gitignore ├── LICENSE ├── README.md ├── __tests__ └── giftCodeHandler.test.js ├── app.js ├── package.json └── util ├── codes.json ├── giftCodeHandler.js ├── logHandler.js ├── proxies.txt └── proxyHandler.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xnti/discord-nitro-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xnti/discord-nitro-generator/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/giftCodeHandler.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xnti/discord-nitro-generator/HEAD/__tests__/giftCodeHandler.test.js -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xnti/discord-nitro-generator/HEAD/app.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xnti/discord-nitro-generator/HEAD/package.json -------------------------------------------------------------------------------- /util/codes.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /util/giftCodeHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xnti/discord-nitro-generator/HEAD/util/giftCodeHandler.js -------------------------------------------------------------------------------- /util/logHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xnti/discord-nitro-generator/HEAD/util/logHandler.js -------------------------------------------------------------------------------- /util/proxies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xnti/discord-nitro-generator/HEAD/util/proxies.txt -------------------------------------------------------------------------------- /util/proxyHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xnti/discord-nitro-generator/HEAD/util/proxyHandler.js --------------------------------------------------------------------------------