├── .gitignore ├── README.md ├── index.js ├── package-lock.json └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # akamai-api 2 | Akamai API utilizing ML to generate unique and valid cookies. 3 | 4 | To setup 5 | 6 | ``` 7 | npm install 8 | node index.js 9 | ``` 10 | 11 | Visit localhost:8080 -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | console.log("Jk") -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "akamai-api", 3 | "version": "1.0.0", 4 | "lockfileVersion": 1, 5 | "requires": true, 6 | "dependencies": { 7 | "axios": { 8 | "version": "0.19.2", 9 | "resolved": "https://registry.npmjs.org/axios/-/axios-0.19.2.tgz", 10 | "integrity": "sha512-fjgm5MvRHLhx+osE2xoekY70AhARk3a6hkN+3Io1jc00jtquGvxYlKlsFUhmUET0V5te6CcZI7lcv2Ym61mjHA==", 11 | "requires": { 12 | "follow-redirects": "1.5.10" 13 | } 14 | }, 15 | "debug": { 16 | "version": "3.1.0", 17 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", 18 | "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", 19 | "requires": { 20 | "ms": "2.0.0" 21 | } 22 | }, 23 | "follow-redirects": { 24 | "version": "1.5.10", 25 | "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.10.tgz", 26 | "integrity": "sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==", 27 | "requires": { 28 | "debug": "=3.1.0" 29 | } 30 | }, 31 | "ms": { 32 | "version": "2.0.0", 33 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 34 | "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" 35 | }, 36 | "uuid": { 37 | "version": "8.2.0", 38 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.2.0.tgz", 39 | "integrity": "sha512-CYpGiFTUrmI6OBMkAdjSDM0k5h8SkkiTP4WAjQgDgNB1S3Ou9VBEvr6q0Kv2H1mMk7IWfxYGpMH5sd5AvcIV2Q==" 40 | } 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "akamai-api", 3 | "version": "1.0.0", 4 | "description": "Akamai API utilizing ML to generate unique and valid cookies.", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/char/akamai-api.git" 12 | }, 13 | "keywords": [], 14 | "author": "", 15 | "license": "ISC", 16 | "bugs": { 17 | "url": "https://github.com/char/akamai-api/issues" 18 | }, 19 | "homepage": "https://github.com/char/akamai-api#readme", 20 | "dependencies": { 21 | "axios": "^0.19.2", 22 | "uuid": "^8.2.0" 23 | } 24 | } 25 | --------------------------------------------------------------------------------