{"id":21389359,"url":"https://github.com/isaced/logpage","last_synced_at":"2026-06-30T11:31:37.281Z","repository":{"id":174616811,"uuid":"652460049","full_name":"isaced/logpage","owner":"isaced","description":"Helps you quickly deploy a live updated Changelog page based on a CHANGELOG.md file, inspired by headwayapp.co, LogLive.","archived":false,"fork":false,"pushed_at":"2023-06-12T15:07:33.000Z","size":57,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-16T12:46:19.232Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://logp.netlify.app","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/isaced.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2023-06-12T05:54:42.000Z","updated_at":"2023-06-13T18:23:22.000Z","dependencies_parsed_at":null,"dependency_job_id":"e91d7699-e3cf-4748-a09e-ea11367692a8","html_url":"https://github.com/isaced/logpage","commit_stats":null,"previous_names":["isaced/logpage"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/isaced/logpage","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/isaced%2Flogpage","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/isaced%2Flogpage/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/isaced%2Flogpage/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/isaced%2Flogpage/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/isaced","download_url":"https://codeload.github.com/isaced/logpage/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/isaced%2Flogpage/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34965642,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-30T02:00:05.919Z","response_time":92,"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-22T12:26:06.359Z","updated_at":"2026-06-30T11:31:37.263Z","avatar_url":"https://github.com/isaced.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# LogPage [![NPM version](https://img.shields.io/npm/v/logpage.svg?style=flat)](https://npmjs.com/package/logpage)\n\nHelps you quickly deploy a live updated Changelog page based on a `CHANGELOG.md` file, inspired by [headwayapp.co](https://headwayapp.co/), [LogLive](https://github.com/egoist/loglive).\n\n\u003cimg src=\"https://i.loli.net/2017/07/27/597995184bb02.png\" width=\"800\" alt=\"preview\"\u003e\n\nLive Demo: https://logp.netlify.app\n\n## Usage\n\nYou can simply create an `index.html` and include `logpage` there:\n\n```html\n\u003chtml\u003e\n\n\u003chead\u003e\n    \u003ctitle\u003eLogPage Example\u003c/title\u003e\n    \u003clink rel=\"stylesheet\" href=\"https://unpkg.com/logpage/dist/style.css\" /\u003e\n\u003c/head\u003e\n\n\u003cbody\u003e\n    \u003cdiv id=\"app\"\u003e\u003c/div\u003e\n    \u003cscript type=\"module\"\u003e\n        import LogPage from 'https://unpkg.com/logpage';\n        new LogPage({\n            target: document.getElementById('app')\n        });\n    \u003c/script\u003e\n\u003c/body\u003e\n\n\u003c/html\u003e\n```\n\nThen you can start to write a `CHANGELOG.md`, by default LogPage will read from `http://your-website/CHANGELOG.md`, however you can use a custom path:\n\n```\nnew LogPage({\n  target: document.getElementById('app'),\n  props: {}\n});\n```\n\n## Config\n\n- `showHeader` (boolean): Show the header or not\n\n## Changelog Format\n\n### Example\n\n```md\n# My Website\n\n## Add TypeScript support (2016-07-23)\n\n### New\n\n- Now added Typescript support.\n- Some other new stuffs.\n\n### Fix\n\nFixed some babel problems.\n```\n\n### Site name\n\nThe value of `h1` heading will be used as website name:\n\n```md\n# My Website\n```\n\n### Changelog Title\n\nChangelog title is an `h2` heading which consists of two parts, `title` and `date` and `date` is totally optional.\n\n```md\n## changelog title (date)\n```\n\nSometime you just want to use semantic version as the changelog title:\n\n```md\n## 1.0.0 (2023-06-12)\n```\n\n### Change Type\n\nChange type is an `h3` heading which describes the type of the change, eg: `Fix`. And it shows up like:\n\n\u003cimg src=\"https://i.loli.net/2017/07/27/59797da5a89df.png\" alt=\"change type\" width=\"60\"\u003e\n\nBy default we have pre-defined colors for specific types which include: `Fix` `Breaking` `New`, other types will get a random color.\n\nYou can also set color for custom change type:\n\n```js\nnew LogPage({\n    target: document.getElementById('app'),\n    props: {\n        colors: {\n            'Bug fixes': '#342343'\n        }\n    }\n});\n```\n\n## Front Matters\n\n### website\n\nYou changelog is born for your product, so adding a link to your actual product is necessary:\n\n```md\n---\nwebsite: http://my-fantastic-app.com\n---\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fisaced%2Flogpage","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fisaced%2Flogpage","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fisaced%2Flogpage/lists"}