{"id":13523982,"url":"https://github.com/simonecorsi/skaffoldo","last_synced_at":"2026-02-24T04:04:49.194Z","repository":{"id":63614990,"uuid":"567247909","full_name":"simonecorsi/skaffoldo","owner":"simonecorsi","description":"🏗 Universal project generator! Recursively copy directory and replace variables (if any)!","archived":false,"fork":false,"pushed_at":"2025-03-19T11:06:22.000Z","size":877,"stargazers_count":5,"open_issues_count":10,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-10-03T05:53:05.562Z","etag":null,"topics":["cli","generator","initializer","javascript","project-generator","skaffold","starter"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/skaffoldo","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/simonecorsi.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-11-17T11:46:47.000Z","updated_at":"2025-03-19T11:06:24.000Z","dependencies_parsed_at":"2023-02-16T03:15:50.628Z","dependency_job_id":"290550d1-ae46-4616-bf98-340cfdf8a681","html_url":"https://github.com/simonecorsi/skaffoldo","commit_stats":{"total_commits":81,"total_committers":4,"mean_commits":20.25,"dds":"0.32098765432098764","last_synced_commit":"aa955eb30b0b5df16f6fb1cad86352143fe41fed"},"previous_names":[],"tags_count":7,"template":false,"template_full_name":"simonecorsi/scdev-npm-starter","purl":"pkg:github/simonecorsi/skaffoldo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simonecorsi%2Fskaffoldo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simonecorsi%2Fskaffoldo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simonecorsi%2Fskaffoldo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simonecorsi%2Fskaffoldo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/simonecorsi","download_url":"https://codeload.github.com/simonecorsi/skaffoldo/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simonecorsi%2Fskaffoldo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29771067,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-24T04:01:02.180Z","status":"ssl_error","status_checked_at":"2026-02-24T03:59:49.901Z","response_time":75,"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":["cli","generator","initializer","javascript","project-generator","skaffold","starter"],"created_at":"2024-08-01T06:01:05.847Z","updated_at":"2026-02-24T04:04:49.178Z","avatar_url":"https://github.com/simonecorsi.png","language":"JavaScript","funding_links":[],"categories":["JavaScript","cli"],"sub_categories":[],"readme":"# skaffoldo\n\n\u003e Recursively copy provided source, while replacing variables (if any).\n\nThis project is meant to be used as a **skaffold anything**. Just provide a source directory/file and an output folder and this will walk recursively, when a variables in a file is found matching a variable in your environment or in the provided json (optional) it will logic-lessly be replaced.\n\n## Table of Content\n\n\u003c!-- toc --\u003e\n\n- [Usage](#usage)\n- [Options](#options)\n- [Contributing](#contributing)\n- [License](#license)\n- [Contact](#contact)\n\n\u003c!-- GETTING STARTED --\u003e\n\n## Usage\n\n```sh\nnpx skaffoldo --source my-boilerplate --output my-new-project --jsonvars '{\"CUSTOM_VAR\": \"MyValue\"}'\n# Enjoy\n```\n\n## Variables\n\n\u003e ⚠️ **This is a logic-less replace, this is not a template engine**. Only variables found in templates are replaced.\n\nBy default `process.env` will be used, if the flag `--jsonvars` is provided with a valid JSON string it will be merge with `process.env` variables.\n\nYou can use variables inside your files or filenames following these formats:\n\n- files: `{{ MY_VARIABLE }}`\n- filenames: `[MY_VARIABLE]_filename.ts`\n\n```sh\nMY_VAR=123 skaffoldo ...\n# All OS level variables are also used\n```\n\n## Options\n\n| flag | description |\n| --- | --- |\n| `--source -s` | The source directory or file |\n| `--output -o` | The output destination|\n| `--verbose -v` | Add more info to errors |\n| `--dryRun -d` | Output operation to console without writing |\n| `--ignore -i` | Ignore paths, can be used multiple times, eg: `**/.git/**` |\n| `--jsonvars -j` | Accept a json with variables in addition to the environment ones |\n\n\u003c!-- CONTRIBUTING --\u003e\n\n## Contributing\n\nProject is pretty simple and straight forward for what is my needs, but if you have any idea you're welcome.\n\nThis projects uses [commitlint](https://commitlint.js.org/) with Angular configuration so be sure to use standard commit format or PR won't be accepted.\n\n1. Fork the Project\n2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)\n3. Commit your Changes (`git commit -m 'feat(scope): some AmazingFeature'`)\n4. Push to the Branch (`git push origin feature/AmazingFeature`)\n5. Open a Pull Request\n\n\u003c!-- LICENSE --\u003e\n\n## License\n\nDistributed under the MIT License. See `LICENSE` for more information.\n\n\u003c!-- CONTACT --\u003e\n\n## Contact\n\nSimone Corsi - [@im_simonecorsi](https://twitter.com/im_simonecorsi)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimonecorsi%2Fskaffoldo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsimonecorsi%2Fskaffoldo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimonecorsi%2Fskaffoldo/lists"}