{"id":15042457,"url":"https://github.com/proxitystudios/freshland","last_synced_at":"2026-02-23T17:39:32.045Z","repository":{"id":218520800,"uuid":"746651567","full_name":"ProxityStudios/freshland","owner":"ProxityStudios","description":"Freshland is a CLI tool that lets you clone repositories from supported platforms faster and comes with some additinional features such as E.P.A","archived":false,"fork":false,"pushed_at":"2025-07-21T09:15:31.000Z","size":819,"stargazers_count":2,"open_issues_count":5,"forks_count":0,"subscribers_count":1,"default_branch":"beta","last_synced_at":"2025-10-23T19:48:52.239Z","etag":null,"topics":[],"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/ProxityStudios.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":"docs/SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-01-22T12:47:33.000Z","updated_at":"2025-07-15T10:42:01.000Z","dependencies_parsed_at":"2024-02-11T09:29:18.438Z","dependency_job_id":"2b97fa63-998b-40e8-9689-b2b33be4f290","html_url":"https://github.com/ProxityStudios/freshland","commit_stats":{"total_commits":39,"total_committers":2,"mean_commits":19.5,"dds":"0.41025641025641024","last_synced_commit":"550a4509c15cbd03fd27db7eccac3a5066042e59"},"previous_names":["proxitystudios/freshland"],"tags_count":71,"template":false,"template_full_name":null,"purl":"pkg:github/ProxityStudios/freshland","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ProxityStudios%2Ffreshland","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ProxityStudios%2Ffreshland/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ProxityStudios%2Ffreshland/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ProxityStudios%2Ffreshland/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ProxityStudios","download_url":"https://codeload.github.com/ProxityStudios/freshland/tar.gz/refs/heads/beta","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ProxityStudios%2Ffreshland/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29749220,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-23T07:44:07.782Z","status":"ssl_error","status_checked_at":"2026-02-23T07:44:07.432Z","response_time":90,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["bash","bash-script","freshland","git","nodejs","repo-cloner","repocloner"],"created_at":"2024-09-24T20:47:20.560Z","updated_at":"2026-02-23T17:39:32.040Z","avatar_url":"https://github.com/ProxityStudios.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Freshland\n\nFreshland is a CLI tool that lets you clone repositories faster and comes with some additinional features such as E.P.A\n\n## Usage\n\nYou can use Freshland in two ways: with a single-line command or with a graphical user interface (GUI).\n\n| Global Flag      | Description                |\n| ---------------- | -------------------------- |\n| `--d`, `--debug` | Enable debug mode          |\n| `--gp`, `--global-proxy` | Globally sets the given proxy          |\n\n### Single-line command\n\nTo clone a repository with a single-line command, use the following syntax:\n\n```bash\nnpx freshland@latest clone \u003cSOURCE\u003e \u003cDESTINATION\u003e [FLAGS]\n```\n\nFor example, to clone `typescript-starter` repository from `ProxityStudios` into a directory named `myapp`, run:\n\n```bash\nnpx freshland@latest clone ProxityStudios/typescript-starter myapp\n```\n\n**\u003c\u003e** Required | **[]** Optional\n\n| Flag                        | Referance          | Accepted Values              | Default Value      | Description                        |\n| --------------------------- | ------------------ | ---------------------------- | ------------------ | ---------------------------------- |\n| `--upd`, `--update-package` |                    |                              | `false`            | Update package name and version    |\n| `--i`, `--install-deps`     | `\u003cpackageManager\u003e` | `npm`, `pnpm`, `bun`, `yarn` | `do-not-install`   | Install dependencies automatically |\n\n### Graphical user interface\nTODO:\n\n```bash\nnpx freshland@latest gui\n```\n\nYou will see a prompt like this:\n\n![With GUI](./docs/assets/with-gui.PNG 'With GUI')\n\n### [BETA] Init E.P.A and automatically configure it\n\nE.P.A stands for **E**SLint, **P**rettier, and **A**irbnb. These are popular tools for code formatting and quality. Freshland can install and configure them for you with a single command. Yeah, it's that simple.\n\n#### TypeScript\n\nIf you're using TypeScript, you need to provide the `--ts` flag:\n\n```bash\nnpx freshland@latest init-epa \u003cpath/to/install\u003e --ts\n```\n\n#### JavaScript\n\nIf you're using JavaScript, you don't need to do anything extra, just omit the `--ts` flag.\n\n```bash\nnpx freshland@latest init-epa \u003cpath/to/install\u003e\n```\n\n| Flag                   | Description    |\n| ---------------------- | -------------- |\n| `--typescript`, `--ts` | Use TypeScript |\n\n# Support and Feedback\n\nIf you have any questions, issues, or feedback related to Freshland, create an issue through Github Issues!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fproxitystudios%2Ffreshland","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fproxitystudios%2Ffreshland","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fproxitystudios%2Ffreshland/lists"}