{"id":23173392,"url":"https://github.com/rhygg/callista","last_synced_at":"2026-05-16T17:02:42.336Z","repository":{"id":54227742,"uuid":"343677966","full_name":"rhygg/callista","owner":"rhygg","description":"A nodejs terminal beautifier package!","archived":false,"fork":false,"pushed_at":"2021-06-19T09:00:46.000Z","size":48,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-27T00:59:51.644Z","etag":null,"topics":["beautify-library","cli","cli-box","cli-color","color","ecmascript6","nodejs","spinner","weight"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rhygg.png","metadata":{"files":{"readme":"Readme.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-03-02T07:05:48.000Z","updated_at":"2021-06-19T09:00:49.000Z","dependencies_parsed_at":"2022-08-13T09:40:31.011Z","dependency_job_id":null,"html_url":"https://github.com/rhygg/callista","commit_stats":null,"previous_names":["rhydderchc/callista"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/rhygg/callista","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rhygg%2Fcallista","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rhygg%2Fcallista/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rhygg%2Fcallista/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rhygg%2Fcallista/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rhygg","download_url":"https://codeload.github.com/rhygg/callista/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rhygg%2Fcallista/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33111497,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-16T04:41:52.686Z","status":"ssl_error","status_checked_at":"2026-05-16T04:41:52.009Z","response_time":115,"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":["beautify-library","cli","cli-box","cli-color","color","ecmascript6","nodejs","spinner","weight"],"created_at":"2024-12-18T05:15:26.201Z","updated_at":"2026-05-16T17:02:42.288Z","avatar_url":"https://github.com/rhygg.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Callista](https://cdn.discordapp.com/attachments/790866153316679680/816593222071484426/20210303_141816_0000-removebg-preview.png)\n# Callista\nCallista is the next generation of **terminal** tool kits for your use!\n\n## Why Callista?\nCallista is just made for easy *first-hand* development, it reduces your projects weight be it big or small, **Callista** just makes things easy, with its in-built powerful library!\nWhy it extends over others:\n1. Callista uses its own modules, bringing more rigidity in development.\n2. Makes the whole project light-weight.\n3. Offers you libraries for commercial software development.\n4. Provides flexibility instead of tough paradigms.\n\n# Libraries Provided\n\n## Beautify\n\n**The Beautify** library innumerates modules that *beautify* the terminal, in other words, **terminal styling**.\n\n### Spinner\nThe spinner inside of the beautify library provides a animated spinner useful for showing **loading** ups!\nA pretty basic example\n```js\nconst {Beautify} = require(\"callista\");\n\nvar spinner = new Beautify.spinner({\n  text: \"Something\",\n  color: \"magenta\"\n}).start();\nsetTimeout(()=\u003e{\n  spinner.succeed();\n}, 1000)\n```\n**All Spinner Methods**\n*Part of the `new Beautify.spinner` class*\n``.start()`` -\u003e Starts the initial spinner. Timeout interval is `300` by default.\n``.succeed()`` -\u003e Shows that the spinner succeeded, i.e., stops the spinner and indicates success with a tick mark. *Takes in parameters(optional) as text*\n``.fail()`` -\u003e Shows that the task indicated by the spinner failed, i.e., stops the spinner and indicates failure with a cross mark. *Takes in parameters(optional) as text*\n\n### Table\nThe Beautify library provides the freedom to make *tables* in your terminal!\n\nA pretty basic example\n```js\nvar {Beautify, Logger} = require('callista');\nconst table = new Beautify.table(\"Tables\");\ntable.setHeading(\"\",\"Name\",\"Gender\").addRow('1','Micheal','Male').addRow('2',\"Maria\",'Female');\nLogger.write(table.toString());\n\n```\n**Alignments**\nBeautify.table.toCentre()  For centre allignment\n\n## Color\nThis module provides of colors which can be used on terminal text.\n\nA pretty basic example\n\n```js\nvar {Color} = require(\"callista\");\nconsole.log(Color.red(\"Hey I\\'m red!\"));\n// Colored output, in console.\n```\n**Colors provided by this module!**\n`red`\n`magenta`\n`blue`\n`black`\n`green`\n`blue`\n`grey`\n`white`\n`yellow`\n`brightRed`\n`brightGreen`\n`brightYellow`\n`brightBlue`\n`brightMagenta`\n`brightCyan`\n`brightWhite`\n*Use `bg` for colors but in __background__*\n\n**Stlyes**\nThe **Colors** library also provides of different style functions!\n`reset`\n`bold`\n`dim`\n`italic`\n`underline`\n`inverse`\n`hidden`\n`strikethrough`\n\n*Random and Rainbow are also functions of this library!*\n\n## Logging\nThis library provides of *logging* functions to log console outputs into a `.log` file or set **levels** for logs!\n\nA pretty basic example\n```js\nvar {Logger} = require(\"callista\");\nLogger.level.warn(\"This is a console warning!\"); // sends a warning to the console\nLogger.write(\"I'm writing this to the default callista log file\"); // writes this into callista.log and the terminal\n// or use the simple log method\nLogger.log(\"ok\") // does not write into a log file!\nLogger.write(\"I'm writting in my own lovely file!\",\"awesomeness\") // writes to awesomeness.log\n```\n**Logger.level Functions**\n`trace(text)`\n`debug(text)`\n`info(text)`\n`warn(text)`\n`error(text)`\n\n*You can set logger level using the level.setLevel() method or to set the default level -\u003e level.setDefaultLevel() method*\n**The different Levels are...**\n1. Silent(5)\n2. Warn(3)\n3. info(2)\n4. error(4)\n5. trace(0)\n6. debug(1)\n*Numbers in bracket indicate the level!*\n\n\u003e Repository logo created by [@doublevcodes](https://github.com/doublevcodes)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frhygg%2Fcallista","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frhygg%2Fcallista","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frhygg%2Fcallista/lists"}