{"id":19447862,"url":"https://github.com/braydentw/create-html-boilerplate","last_synced_at":"2025-04-25T02:30:28.282Z","repository":{"id":45219806,"uuid":"320974327","full_name":"BraydenTW/create-html-boilerplate","owner":"BraydenTW","description":"Generate a vanilla HTML/CSS boilerplate in a flash! ⚡","archived":false,"fork":false,"pushed_at":"2023-08-18T16:01:13.000Z","size":40,"stargazers_count":29,"open_issues_count":0,"forks_count":6,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-18T13:03:44.574Z","etag":null,"topics":["boilerplate","cli","css","html","javascript","js","vanilla"],"latest_commit_sha":null,"homepage":"","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/BraydenTW.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":"2020-12-13T03:19:23.000Z","updated_at":"2022-07-27T23:19:04.000Z","dependencies_parsed_at":"2024-11-10T16:22:32.946Z","dependency_job_id":"aa4afde9-b86b-4c80-9f7f-f721aa414bdb","html_url":"https://github.com/BraydenTW/create-html-boilerplate","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BraydenTW%2Fcreate-html-boilerplate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BraydenTW%2Fcreate-html-boilerplate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BraydenTW%2Fcreate-html-boilerplate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BraydenTW%2Fcreate-html-boilerplate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BraydenTW","download_url":"https://codeload.github.com/BraydenTW/create-html-boilerplate/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250741850,"owners_count":21479679,"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":["boilerplate","cli","css","html","javascript","js","vanilla"],"created_at":"2024-11-10T16:21:07.275Z","updated_at":"2025-04-25T02:30:28.030Z","avatar_url":"https://github.com/BraydenTW.png","language":"JavaScript","funding_links":["https://www.buymeacoffee.com/braydenw"],"categories":[],"sub_categories":[],"readme":"\u003c!--![Banner](https://socialify.git.ci/braydentw/create-html-boilerplate/image?description=1\u0026forks=1\u0026issues=1\u0026language=1\u0026owner=1\u0026pulls=1\u0026stargazers=1\u0026theme=Light)--\u003e\n\n# Create HTML Boilerplate\n\nGenerate a vanilla HTML/CSS boilerplate in a flash! ⚡\n\n![Baby gif](https://media.giphy.com/media/MJGxL8fxrQBfq/giphy.gif)\n\n## Quick Overview\n\n```sh\nnpx create-html-boilerplate my-app\ncd my-app\n```\n\nIf you've previously installed `create-html-boilerplate` globally via `npm install -g create-html-boilerplate`, we recommend you uninstall the package using `npm uninstall -g create-html-boilerplate` to ensure that npx always uses the latest version.\n\n_([npx](https://medium.com/@maybekatz/introducing-npx-an-npm-package-runner-55f7d4bd282b) comes with npm 5.2+ and higher, see [instructions for older npm versions](https://gist.github.com/gaearon/4064d3c23a77c74a3614c498a8bb1c5f))_\n\nBy using an extension like [Live Server](https://marketplace.visualstudio.com/items?itemName=ritwickdey.LiveServer) on [VSCode](https://code.visualstudio.com/), you can view the file live at [http://localhost:5500/](http://localhost:5500/)\n\n## Creating an App\n\n**You’ll need to have Node 8.16.0 or Node 10.16.0 or later version on your local development machine** (but it’s not required on the server). You can use [nvm](https://github.com/creationix/nvm#installation) (macOS/Linux) or [nvm-windows](https://github.com/coreybutler/nvm-windows#node-version-manager-nvm-for-windows) to switch Node versions between different projects.\n\nTo create a new app, you may choose one of the following methods:\n\n### npx\n\n```sh\nnpx create-html-boilerplate my-app\n```\n\n_([npx](https://medium.com/@maybekatz/introducing-npx-an-npm-package-runner-55f7d4bd282b) is a package runner tool that comes with npm 5.2+ and higher, see [instructions for older npm versions](https://gist.github.com/gaearon/4064d3c23a77c74a3614c498a8bb1c5f))_\n\n### npm\n\n```sh\nnpm create-html-boilerplate -g\ncreate-html-boilerplate my-app\n```\n\nOnce you've created the boilerplate, cd into your project by running the follwing command:\n\n```sh\ncd my-app\n```\n\n### Get Started Immediately\n\nDon't need all the crazy frameworks and tools? Start fresh with a minimal HTML, CSS, and Javascript folder structure.\n\nBy running the simple CLI, you can generate a folder structure like so:\n\n```\nmy-app\n├── index.html\n├── styles\n│   ├── main.css\n├── scripts\n│   ├── main.js\n```\n\n## Contributing to this project 👊\n\nThanks for showing interest to contribute to Create HTML Boilerplate 💖, you rock!\n\nFollow the directions below to setup your project and contribute to this repository.\n\n1. Fork the repo (click the \u003ckbd\u003eFork\u003c/kbd\u003e button at the top right of [this page](https://github.com/braydentw/create-html-boilerplate))\n\n2. Clone your fork locally\n\n```sh\ngit clone https://github.com/\u003cYOUR_USERNAME\u003e/create-html-boilerplate.git\ncd create-html-boilerplate\n```\n\n3. Setup all the dependencies and packages\n\n```sh\nnpm install\n```\n\nOnce you submit a PR, we'll respond as soon as possible so we can take a look at what you've made!\n\n## Making a Pull Request? 🔁\n\nThat's **awesome**! Start by following the instructions given earlier of how to run this project on your system locally.\n\nThen, commit and push your changes:\n\n```bash\ngit add .\ngit commit -m \"My commit message\"\ngit push\n```\n\nOnce finished, you can create a pull request!\n\nIs it your first time? Check out [this link](https://docs.github.com/en/free-pro-team@latest/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request-from-a-fork) to learn how to submit a pull request.\n\n## Think you found a bug? 🐛\n\nPlease [submit an issue](https://github.com/braydentw/create-html-boilerplate/issues/new) and **provide a clear path to reproduction with a code example**.\n\nThe clearer you are, the easier it will be for us help!\n\n## License\n\nCreate HTML Boilerplate is open source software [licensed as MIT](https://github.com/braydentw/create-html-boilerplate/blob/main/LICENSE).\n\n---\n\n### Like my work?\n\n\u003ca href=\"https://www.buymeacoffee.com/braydenw\" target=\"_blank\"\u003e\u003cimg src=\"https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png\" alt=\"Buy Me A Coffee\" width=\"210\" \u003e\u003c/a\u003e\n\nMade by [@BraydenTW](https://github.com/braydentw)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbraydentw%2Fcreate-html-boilerplate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbraydentw%2Fcreate-html-boilerplate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbraydentw%2Fcreate-html-boilerplate/lists"}