{"id":21612453,"url":"https://github.com/altanis/altantis-framework","last_synced_at":"2025-10-08T03:54:18.803Z","repository":{"id":57176954,"uuid":"299402265","full_name":"Altanis/AltanTiS-Framework","owner":"Altanis","description":"A sweet and simple framework to utilize Discord.js easier.","archived":false,"fork":false,"pushed_at":"2020-10-08T15:19:03.000Z","size":68,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-09-23T18:13:06.167Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Altanis.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-09-28T18:48:50.000Z","updated_at":"2022-07-09T22:46:46.000Z","dependencies_parsed_at":"2022-09-14T02:10:39.276Z","dependency_job_id":null,"html_url":"https://github.com/Altanis/AltanTiS-Framework","commit_stats":null,"previous_names":["codersudawuda/altantis-framework"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Altanis/AltanTiS-Framework","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Altanis%2FAltanTiS-Framework","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Altanis%2FAltanTiS-Framework/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Altanis%2FAltanTiS-Framework/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Altanis%2FAltanTiS-Framework/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Altanis","download_url":"https://codeload.github.com/Altanis/AltanTiS-Framework/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Altanis%2FAltanTiS-Framework/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278886413,"owners_count":26062975,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-08T02:00:06.501Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-24T21:20:40.127Z","updated_at":"2025-10-08T03:54:18.763Z","avatar_url":"https://github.com/Altanis.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AltanTiS Framework\n\nUnder construction, install at your own risk 😔.\n\nUsage:\n\n## Option 1:\n```js\nconst { ExtendedClient } = require('altantis-framework');\n\nconst client = new ExtendedClient({\n    token: 'very-valid-token',\n    prefix: '?',\n    ownerIDS: ['515282559861653505']\n});\n\nclient.once('ready', () =\u003e {\n    console.log('Ready!');\n\n    client.initCommand('say', (message, args) =\u003e {\n        message.delete();\n        message.channel.send(args.join(' ') || '** **');\n    }, {\n        requiresPermissions: {\n            permissions: ['MANAGE_MESSAGES'],\n            send: (message, _args) =\u003e {\n                message.channel.send(`Missing permission **${client.nodeToName('MANAGE_MESSAGES')}**`);\n            }\n        },\n        cooldown: {\n            cooldown: 4,\n            send: (message, args, time) =\u003e {\n                message.channel.send(`You need to wait **${time}** before this command can be run again.`)\n            }, \n        },\n        ownerOnly: false, // Default: false\n        aliases: ['speak', 'echo'], // Default: []\n        category: 'util', // Default: ''\n        description: 'Speak as bot', // Default: ''\n        usage: '?say {message}' // Default: ''\n    });\n\n    // You can even get a commmand by its usage, description, or category!\n\n    client.commands.filter(command =\u003e command.category == 'util'); // Returns all commands in the category \"util\"\n    client.commands.filter(command =\u003e command.ownerOnly); // Gets all commands which only the owner can use.\n    // So on, so forth.\n});\n\nclient.on('commandCreate', (command, _callback) =\u003e {\n    console.log(`Command ${command} has loaded!`);\n});\n\nclient.authorize();\n```\n\n## Option 2:\n\n```js\n// index.js\nconst { ExtendedClient } = require('altantis-framework');\n\nconst client = new ExtendedClient({\n    token: 'very-valid-token',\n    prefix: '?',\n    ownerIDS: ['515282559861653505']\n});\n\nclient.once('ready', () =\u003e {\n    console.log('Ready!');\n\n    client.initCommand('./say');\n});\n\nclient.on('commandCreate', (command, _callback) =\u003e {\n    console.log(`Command ${command} has loaded!`);\n});\n\nclient.authorize();\n\n// say.js\nmodule.exports = {\n    requiresPermissions: {\n        permissions: ['MANAGE_MESSAGES'],\n        send: (message, _args) =\u003e message.channel.send('You do not have the permission `Manage Messages`.'),\n    },\n    cooldown: {\n        cooldown: 5000, // Cannot be below 150 (milliseconds)\n        send: (message, args, time) =\u003e {\n            message.channel.send(`You need to wait **${time}** before this command can be run again.`)\n        }, \n    },\n    aliases: ['speak', 'echo'],\n    run: (message, args) =\u003e {\n        message.delete();\n        message.channel.send(args.join(' ') || '** **');\n    },\n};\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faltanis%2Faltantis-framework","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faltanis%2Faltantis-framework","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faltanis%2Faltantis-framework/lists"}