{"id":15059321,"url":"https://github.com/ulkajs/ulka","last_synced_at":"2025-04-10T05:23:12.918Z","repository":{"id":51129737,"uuid":"333156336","full_name":"ulkajs/ulka","owner":"ulkajs","description":"A simple and fast static site generator written in typescript.","archived":false,"fork":false,"pushed_at":"2023-12-17T13:00:28.000Z","size":2020,"stargazers_count":20,"open_issues_count":0,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-24T04:42:14.197Z","etag":null,"topics":["blog","blog-engine","documentation-generator","javascript","ssg","static-site-generator","ulka"],"latest_commit_sha":null,"homepage":"https://ulka.js.org","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/ulkajs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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},"funding":{"github":[],"patreon":"coderosh","open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":["https://www.buymeacoffee.com/coderosh"]}},"created_at":"2021-01-26T17:06:36.000Z","updated_at":"2025-03-04T06:45:14.000Z","dependencies_parsed_at":"2024-06-19T01:31:31.558Z","dependency_job_id":"7a7e9994-dfdd-4777-99e9-f86b8a8c6738","html_url":"https://github.com/ulkajs/ulka","commit_stats":{"total_commits":432,"total_committers":5,"mean_commits":86.4,"dds":0.06018518518518523,"last_synced_commit":"1ea32267f2d60d516d59cc1b571d4d130066bae9"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ulkajs%2Fulka","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ulkajs%2Fulka/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ulkajs%2Fulka/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ulkajs%2Fulka/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ulkajs","download_url":"https://codeload.github.com/ulkajs/ulka/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247687641,"owners_count":20979510,"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","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":["blog","blog-engine","documentation-generator","javascript","ssg","static-site-generator","ulka"],"created_at":"2024-09-24T22:41:07.320Z","updated_at":"2025-04-10T05:23:12.887Z","avatar_url":"https://github.com/ulkajs.png","language":"TypeScript","funding_links":["https://patreon.com/coderosh","https://www.buymeacoffee.com/coderosh"],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://ulka.js.org\" target=\"_blank\" rel=\"noopener noreferrer\"\u003e\n    \u003cimg width=\"120px\" src=\"https://coderosh.github.io/static-files/ulkajs/svg/logo.svg\" alt=\"Ulka logo\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\u003ch2 align=\"center\"\u003eUlka\u003c/h2\u003e\n\u003cp align=\"center\"\u003eA simple, fast and lightweight static site generator written in javascript.\u003c/p\u003e\n\n\u003cbr /\u003e\n\u003cp align=\"center\"\u003e\n\u003ca href=\"https://www.npmjs.com/package/ulka\"\u003e\u003cimg alt=\"NPM\" src=\"https://img.shields.io/npm/v/ulka\" /\u003e\u003c/a\u003e\n\u003ca href=\"https://github.com/ulkajs/ulka\"\u003e\u003cimg alt=\"MIT\" src=\"https://img.shields.io/badge/license-MIT-blue.svg\" /\u003e\u003c/a\u003e\n\u003ca href=\"#\"\u003e\u003cimg alt=\"CI\" src=\"https://img.shields.io/github/workflow/status/ulkajs/ulka/CI\"\u003e\u003c/a\u003e\n\u003ca href=\"https://github.com/ulkajs/ulka\"\u003e\u003cimg src=\"https://img.shields.io/badge/PRs-welcome-brightgreen.svg\" alt=\"PRs welcome!\" /\u003e\u003c/a\u003e\n\u003ca href=\"https://github.com/ulkajs/ulka\"\u003e\u003cimg src=\"https://img.shields.io/badge/types-typescript-blue.svg\" alt=\"PRs welcome!\" /\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n## 🚀 Getting Started\n\n1. Create new ulka site.\n\n   ```sh\n   # with npm\n   npm init ulka\n\n   # with yarn\n   yarn create ulka\n   ```\n\n   Then chose the template and project name.\n\n   OR you can directly specify project name and template\n\n   ```sh\n    # with npm\n    npm init ulka my-blog -- --template default-blog\n\n    # with yarn\n    yarn create ulka my-blog --template default-blog\n   ```\n\n1. Navigate to project name and install dependencies.\n\n   ```sh\n    cd my-blog\n\n    # with npm\n    npm install\n\n    # with yarn\n    yarn install\n   ```\n\n1. Build your project.\n\n   ```sh\n   # with npx\n   npx ulka # build the project\n   npx ulka -w # build and watch\n\n   # with yarn\n   yarn ulka # build the project\n   yarn ulka -w # build and watch\n   ```\n\n## Documentation\n\nVisit [ulka.js.org](https://ulka.js.org) for documentation and tutorial.\n\n## License\n\n[MIT](https://mit-license.org/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fulkajs%2Fulka","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fulkajs%2Fulka","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fulkajs%2Fulka/lists"}