{"id":50864272,"url":"https://github.com/gsaini/rolldown-getting-started","last_synced_at":"2026-06-14T23:34:32.488Z","repository":{"id":356443902,"uuid":"1232559398","full_name":"gsaini/rolldown-getting-started","owner":"gsaini","description":"Sample project demonstrating Rolldown — the Rust-based JavaScript bundler. Follows the official Getting Started guide and uses pnpm as the package manager.","archived":false,"fork":false,"pushed_at":"2026-05-08T03:48:47.000Z","size":8,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-14T23:34:29.081Z","etag":null,"topics":["build-tool","bundler","esm","getting-started","javascript","nodejs","pnpm","rolldown","rust-based","sample-project"],"latest_commit_sha":null,"homepage":"https://rolldown.rs/guide/getting-started","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gsaini.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-08T03:43:00.000Z","updated_at":"2026-05-08T03:48:51.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/gsaini/rolldown-getting-started","commit_stats":null,"previous_names":["gsaini/rolldown-getting-started"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/gsaini/rolldown-getting-started","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gsaini%2Frolldown-getting-started","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gsaini%2Frolldown-getting-started/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gsaini%2Frolldown-getting-started/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gsaini%2Frolldown-getting-started/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gsaini","download_url":"https://codeload.github.com/gsaini/rolldown-getting-started/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gsaini%2Frolldown-getting-started/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34342089,"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-14T02:00:07.365Z","response_time":62,"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":["build-tool","bundler","esm","getting-started","javascript","nodejs","pnpm","rolldown","rust-based","sample-project"],"created_at":"2026-06-14T23:34:31.947Z","updated_at":"2026-06-14T23:34:32.453Z","avatar_url":"https://github.com/gsaini.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# rolldown-getting-started\n\n![Rolldown](https://img.shields.io/npm/v/rolldown?style=for-the-badge\u0026label=Rolldown\u0026color=FF3E00)\n![Node.js](https://img.shields.io/badge/Node.js-18%2B-339933?style=for-the-badge\u0026logo=node.js\u0026logoColor=white)\n![pnpm](https://img.shields.io/badge/pnpm-11-F69220?style=for-the-badge\u0026logo=pnpm\u0026logoColor=white)\n![JavaScript](https://img.shields.io/badge/JavaScript-ES2022-F7DF1E?style=for-the-badge\u0026logo=javascript\u0026logoColor=black)\n![Rust](https://img.shields.io/badge/Powered_by-Rust-000000?style=for-the-badge\u0026logo=rust\u0026logoColor=white)\n\n![GitHub last commit](https://img.shields.io/github/last-commit/gsaini/rolldown-getting-started?style=for-the-badge\u0026logo=github)\n![GitHub repo size](https://img.shields.io/github/repo-size/gsaini/rolldown-getting-started?style=for-the-badge\u0026logo=github)\n![GitHub top language](https://img.shields.io/github/languages/top/gsaini/rolldown-getting-started?style=for-the-badge\u0026logo=github)\n\nA minimal sample project that demonstrates [Rolldown](https://rolldown.rs/) — the Rust-based JavaScript bundler — following the official [Getting Started](https://rolldown.rs/guide/getting-started) guide.\n\n## Project layout\n\n```text\n.\n├── src/\n│   ├── main.js     # Entry point\n│   ├── hello.js    # Greeting module\n│   └── math.js     # Tiny math helpers\n├── rolldown.config.js\n└── package.json\n```\n\n## Setup\n\nThis project uses [pnpm](https://pnpm.io/) as its package manager.\n\n```bash\npnpm install\n```\n\n## Build\n\nBundle `src/main.js` into `dist/bundle.js` using the config file:\n\n```bash\npnpm build\n```\n\nOr invoke the CLI directly:\n\n```bash\npnpm exec rolldown src/main.js --file dist/bundle.js\n```\n\n## Run\n\n```bash\npnpm start\n```\n\nExpected output:\n\n```text\nHello Rolldown!\n2 + 3 = 5\n4 * 5 = 20\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgsaini%2Frolldown-getting-started","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgsaini%2Frolldown-getting-started","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgsaini%2Frolldown-getting-started/lists"}