{"id":47703345,"url":"https://github.com/dismord/dismord","last_synced_at":"2026-04-02T17:46:14.133Z","repository":{"id":65375494,"uuid":"544005724","full_name":"dismord/dismord","owner":"dismord","description":"Dismord is a simple but awesome NodeJs build tool","archived":false,"fork":false,"pushed_at":"2022-10-04T01:15:45.000Z","size":68,"stargazers_count":4,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-23T23:12:45.648Z","etag":null,"topics":["bot","client","dc","discord","discordbot","discordclient","discordjs","js","node"],"latest_commit_sha":null,"homepage":"https://dismord.js.org","language":"JavaScript","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/dismord.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":"2022-10-01T11:41:18.000Z","updated_at":"2022-11-03T09:57:48.000Z","dependencies_parsed_at":"2023-01-20T07:34:15.513Z","dependency_job_id":null,"html_url":"https://github.com/dismord/dismord","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dismord/dismord","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dismord%2Fdismord","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dismord%2Fdismord/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dismord%2Fdismord/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dismord%2Fdismord/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dismord","download_url":"https://codeload.github.com/dismord/dismord/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dismord%2Fdismord/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31312566,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-02T12:59:32.332Z","status":"ssl_error","status_checked_at":"2026-04-02T12:54:48.875Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["bot","client","dc","discord","discordbot","discordclient","discordjs","js","node"],"created_at":"2026-04-02T17:46:13.536Z","updated_at":"2026-04-02T17:46:14.122Z","avatar_url":"https://github.com/dismord.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \u003cp\u003e\n    \u003ca href=\"https://github.com/dismord/dismord\"\u003e\n      \u003cimg src=\"./img/banner.png\" alt=\"Dismord\" width=\"546\"\u003e\n    \u003c/a\u003e\n  \u003c/p\u003e\n  \u003cp\u003e\n    \u003ca href=\"https://npmjs.com/create-dismord\"\u003e\n      \u003cimg src=\"https://img.shields.io/npm/v/create-dismord.svg?style=flat-square\u0026color=9cf\" alt=\"npm\"\u003e\n    \u003c/a\u003e\n  \u003c/p\u003e\n\u003c/div\u003e\n\n## About\n\n```Dismord``` is a simple but awesome ```NodeJs``` build tool.\n\nIt can help you create a ```DiscordJs``` project quickly and faster.\n\n## Installation\n\nWith ```npm```:\n```powershell\n$ npm create dismord\n```\n\nWith ```yarn```:\n```powershell\n$ yarn create dismord\n```\n\nWith ```pnpm```:\n```powershell\n$ pnpm create dismord\n```\n\n## Usage\n\n### Init\n\nInstall and answer the questions at the terminal.\n\nChange the path to your project:\n```powershell\n$ cd PROJECTPATH\n```\n\nInstall the packages your project needs:\n```powershell\n$ npm install\n```\n\nEnter bot ```ID``` and ```TOKEN``` in ```.env``` file:\n```env\nID=123456789012345678\nTOKEN=IWILLNERVERSHOWYOUMYTOKENLOL\n```\n\nRun your bot:\n```powershell\n$ npm run bot\n```\n\n### Add Command\n\nCreate ```myname.js``` file in ```cmds``` folder.\n\nRequire ```slashCommandBuilder```:\n\n```javascript\n// 13.6.0\nconst { SlashCommandBuilder } = require('@discordjs/builders');\n\n// 14.4.0\nconst { SlashCommandBuilder } = require('discord.js');\n```\n\nAdd ```module.exports```:\n\n```javascript\n// 13.6.0\nconst { SlashCommandBuilder } = require('@discordjs/builders');\n\n// 14.4.0\nconst { SlashCommandBuilder } = require('discord.js');\n\nmodule.exports = {\n\t\n};\n```\n\nCreate a new ```slashCommandBuilder```, then set its ```name``` and ```description```:\n\n```javascript\n// 13.6.0\nconst { SlashCommandBuilder } = require('@discordjs/builders');\n\n// 14.4.0\nconst { SlashCommandBuilder } = require('discord.js');\n\nmodule.exports = {\n\tdata: new SlashCommandBuilder().setName('myname').setDescription('what is my name')\n};\n```\n\nAdd an ```interaction```:\n\n```javascript\n// 13.6.0\nconst { SlashCommandBuilder } = require('@discordjs/builders');\n\n// 14.4.0\nconst { SlashCommandBuilder } = require('discord.js');\n\nmodule.exports = {\n\tdata: new SlashCommandBuilder().setName('myname').setDescription('what is my name'),\n\tasync execute(interaction) {\n\t\t\n\t}\n};\n```\n\nReply the ```user.tag``` of asker:\n\n```javascript\n// 13.6.0\nconst { SlashCommandBuilder } = require('@discordjs/builders');\n\n// 14.4.0\nconst { SlashCommandBuilder } = require('discord.js');\n\nmodule.exports = {\n\tdata: new SlashCommandBuilder().setName('myname').setDescription('what is my name'),\n\tasync execute(interaction) {\n\t\tinteraction.reply({ content: interaction.user.tag });\n\t}\n};\n```\n\n### Delete Command\n\nYou can just delete ```myname.js``` file in ```cmds``` folder.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdismord%2Fdismord","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdismord%2Fdismord","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdismord%2Fdismord/lists"}