{"id":17673631,"url":"https://github.com/codetheweb/nodesplash","last_synced_at":"2025-08-27T14:18:57.168Z","repository":{"id":85614136,"uuid":"437954914","full_name":"codetheweb/nodesplash","owner":"codetheweb","description":"🌊 port of qdm12/gosplash to TypeScript","archived":false,"fork":false,"pushed_at":"2021-12-14T00:57:48.000Z","size":101,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-08-09T12:32:30.238Z","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":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/codetheweb.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-12-13T16:58:57.000Z","updated_at":"2021-12-15T10:04:35.000Z","dependencies_parsed_at":"2023-05-26T17:00:42.181Z","dependency_job_id":null,"html_url":"https://github.com/codetheweb/nodesplash","commit_stats":{"total_commits":12,"total_committers":2,"mean_commits":6.0,"dds":0.08333333333333337,"last_synced_commit":"0582cad53a7de4a188fa5f60a875aa98954feb41"},"previous_names":[],"tags_count":2,"template":false,"template_full_name":"codetheweb/typescript-template","purl":"pkg:github/codetheweb/nodesplash","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codetheweb%2Fnodesplash","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codetheweb%2Fnodesplash/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codetheweb%2Fnodesplash/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codetheweb%2Fnodesplash/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codetheweb","download_url":"https://codeload.github.com/codetheweb/nodesplash/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codetheweb%2Fnodesplash/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272339657,"owners_count":24917216,"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-08-27T02:00:09.397Z","response_time":76,"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-10-24T05:42:40.844Z","updated_at":"2025-08-27T14:18:57.141Z","avatar_url":"https://github.com/codetheweb.png","language":"TypeScript","funding_links":["https://www.paypal.me/codetheweb","https://github.com/sponsors/codetheweb"],"categories":[],"sub_categories":[],"readme":"# 🌊 NodeSplash [![codecov](https://codecov.io/gh/codetheweb/nodesplash/branch/master/graph/badge.svg?token=BXZ22G570I)](https://codecov.io/gh/codetheweb/nodesplash)\n\nLibrary to show log lines at the start of a program.\n\nDirect port of [qdm12](https://github.com/qdm12)'s excellent [GoSplash](https://github.com/qdm12/gosplash) library.\n\nFor example, this\n\n```typescript\nimport {makeLines} from \"nodesplash\";\n\nconsole.log(makeLines({\n    separator: '=',\n    user: 'codetheweb',\n    repository: 'nodesplash',\n    emails: ['hi@maxisom.me'],\n    version: 'v1.1.1',\n    commit: 'c892ef2',\n    buildDate: new Date('7/13/2021'),\n    paypalUser: 'codetheweb',\n    githubSponsor: 'codetheweb'\n}).join('\\n'));\n```\n\nwill result in this:\n\n```log\n========================================\n========================================\n============== nodesplash ==============\n========================================\n=========== Made with ❤️ by ============\n==== https://github.com/codetheweb =====\n========================================\n========================================\n\nRunning version v1.1.1 built on 7/13/2021 (commit c892ef2)\n\n🔧 Need help? https://github.com/codetheweb/nodesplash/discussions/new\n🐛 Bug? https://github.com/codetheweb/nodesplash/issues/new\n✨ New feature? https://github.com/codetheweb/nodesplash/issues/new\n☕ Discussion? https://github.com/codetheweb/nodesplash/discussions/new\n💻 Email? hi@maxisom.me\n💰 Help me? https://www.paypal.me/codetheweb https://github.com/sponsors/codetheweb\n```\n\n## Usage\n\n`yarn add nodesplash` or `npm i nodesplash -s`. Then:\n\n- `const {makeLines} = require('nodesplash')` for JavaScript or\n- `import {makeLines} from 'nodesplash'` for TypeScript.\n\nAll settings:\n\n```typescript\ninterface Settings {\n  // Formatting settings\n  lineLength?: number;   // defaults to 40\n  separator?: string;    // defaults to '='\n  madeByPrefix?: string; // defaults to 'Made with ❤️ by '\n\n  // Project information\n  rootURL?: string;   // defaults to https://github.com\n  user?: string;\n  repository?: string;\n  authors?: string[]; // defaults to `${rootURL}/${user}`\n  emails?: string[];\n\n  // Program information\n  version?: string;   // defaults to 'unknown'\n  commit?: string;    // defaults to 'unknown'\n  buildDate?: Date;   // defaults to 'unknown date'\n  announcement?: string;\n  announceExp?: Date; // don't include to disable expiration\n\n  // Sponsor information\n  paypalUser?: string;\n  githubSponsor?: string;\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodetheweb%2Fnodesplash","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodetheweb%2Fnodesplash","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodetheweb%2Fnodesplash/lists"}