{"id":17638957,"url":"https://github.com/matzkoh/niconizer","last_synced_at":"2025-08-16T11:33:27.670Z","repository":{"id":37271453,"uuid":"164868303","full_name":"matzkoh/niconizer","owner":"matzkoh","description":"A desktop application that displays plain text, images, or any other HTML content on the screen, like nicovideo or bilibili.","archived":false,"fork":false,"pushed_at":"2025-08-07T21:12:11.000Z","size":24197,"stargazers_count":14,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-08T07:42:36.093Z","etag":null,"topics":["bilibili","desktop-application","electron","niconizer","nicovideo"],"latest_commit_sha":null,"homepage":"","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/matzkoh.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,"zenodo":null},"funding":{"github":"matzkoh"}},"created_at":"2019-01-09T13:30:02.000Z","updated_at":"2025-08-07T21:11:43.000Z","dependencies_parsed_at":"2024-02-28T01:43:30.772Z","dependency_job_id":"e815debb-6cde-4709-b0ee-3104ae30a1b4","html_url":"https://github.com/matzkoh/niconizer","commit_stats":{"total_commits":1753,"total_committers":5,"mean_commits":350.6,"dds":0.5082715345122647,"last_synced_commit":"459a326ed816abd6cd5c8843eba49a7457537122"},"previous_names":[],"tags_count":218,"template":false,"template_full_name":null,"purl":"pkg:github/matzkoh/niconizer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matzkoh%2Fniconizer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matzkoh%2Fniconizer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matzkoh%2Fniconizer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matzkoh%2Fniconizer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/matzkoh","download_url":"https://codeload.github.com/matzkoh/niconizer/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matzkoh%2Fniconizer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270706170,"owners_count":24631624,"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-16T02:00:11.002Z","response_time":91,"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":["bilibili","desktop-application","electron","niconizer","nicovideo"],"created_at":"2024-10-23T04:06:00.410Z","updated_at":"2025-08-16T11:33:27.642Z","avatar_url":"https://github.com/matzkoh.png","language":"TypeScript","funding_links":["https://github.com/sponsors/matzkoh"],"categories":[],"sub_categories":[],"readme":"[![CircleCI][circleci-badge]][circleci]\n[![Renovate][renovate-badge]][renovate]\n[![npm][npm-badge]][npm]\n\n[circleci]: https://circleci.com/gh/matzkoh/niconizer\n[circleci-badge]: https://circleci.com/gh/matzkoh/niconizer.svg?style=shield\n[renovate]: https://renovatebot.com/\n[renovate-badge]: https://img.shields.io/badge/renovate-enabled-brightgreen\n[npm]: https://www.npmjs.com/package/niconizer\n[npm-badge]: https://img.shields.io/npm/v/niconizer.svg\n\n# niconizer\n\n## What is this\n\n_niconizer_ is a simple desktop application that has two functionalities below.\n\n- Overlay short HTML content directly on the screen.\n  - The content flows from right to left on the screen and disappears.\n- Local WebSocket server to receive the content.\n\nIt can be used in combination with clients that send contents.\n\n## Getting started\n\n### Installation\n\n```bash\n$ npm i -g niconizer\n$ niconizer\n```\n\nThen the WebSocket server starts up on your computer and listens for connections.\n\nAvailable clients are in the [section](#clients) bellow.\n\n## Tray Icon Menu\n\n- `Start`\n  - Open a transparent window that shows the content.\n- `Stop`\n  - Close the window and pause displaying the content.\n- `Quit`\n  - Quit niconizer.\n\n## Clients\n\n- Slack\n  - [niconizer-slack](https://github.com/matzkoh/niconizer-slack)\n- Twitter\n  - [niconizer-tweetdeck](https://github.com/matzkoh/userscripts/tree/master/packages/niconizer-tweetdeck)\n\n## Develop client\n\n**Currently, no authentication is implemented.**\n\n---\n\n### Node.js\n\n```js\n// WebSocket implementation for nodejs\nconst WebSocket = require(\"ws\");\n\n// niconizer server\nconst ws = new WebSocket(\"ws://localhost:25252/\");\n\n// any html content\nws.send(\"\u003cb\u003eHello, world!\u003c/b\u003e\");\n```\n\n### Browser (assuming use from userscripts such as Greasemonkey)\n\n```js\nconst ws = new WebSocket(\"ws://localhost:25252/\");\n\nws.send(\"\u003cb\u003eHello, world!\u003c/b\u003e\");\n```\n\n### Shell Script\n\n```sh\nwscat -c ws://localhost:25252 -x \"$(jq -r '.name' package.json)\"\n```\n\n## Contributing\n\nLint, Format, Build\n\n```bash\n$ npm run build\n```\n\nBuild, Run\n\n```bash\n$ npm start\n```\n\nPackage\n\n```bash\n$ npm run package\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatzkoh%2Fniconizer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmatzkoh%2Fniconizer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatzkoh%2Fniconizer/lists"}