{"id":13403553,"url":"https://github.com/h5bp/create-html5-boilerplate","last_synced_at":"2025-03-14T08:32:01.220Z","repository":{"id":38173036,"uuid":"260890225","full_name":"h5bp/create-html5-boilerplate","owner":"h5bp","description":"npx quick start for html5-boilerplate","archived":false,"fork":false,"pushed_at":"2024-08-01T03:48:09.000Z","size":5203,"stargazers_count":281,"open_issues_count":9,"forks_count":49,"subscribers_count":9,"default_branch":"main","last_synced_at":"2024-10-01T07:29:15.289Z","etag":null,"topics":["html","html5-boilerplate","quickstart","web"],"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/h5bp.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":".github/CONTRIBUTING.md","funding":null,"license":"license.txt","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":".github/SUPPORT.md","governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-05-03T11:03:12.000Z","updated_at":"2024-08-26T00:23:29.000Z","dependencies_parsed_at":"2024-01-16T10:36:25.890Z","dependency_job_id":"cdc06c0b-5809-46e1-b00a-aaabe1f7b305","html_url":"https://github.com/h5bp/create-html5-boilerplate","commit_stats":{"total_commits":318,"total_committers":7,"mean_commits":45.42857142857143,"dds":0.449685534591195,"last_synced_commit":"38068d11480f8946407dea02fb30179adb0430fb"},"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/h5bp%2Fcreate-html5-boilerplate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/h5bp%2Fcreate-html5-boilerplate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/h5bp%2Fcreate-html5-boilerplate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/h5bp%2Fcreate-html5-boilerplate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/h5bp","download_url":"https://codeload.github.com/h5bp/create-html5-boilerplate/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":221449548,"owners_count":16823612,"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":["html","html5-boilerplate","quickstart","web"],"created_at":"2024-07-30T19:01:31.527Z","updated_at":"2024-10-25T18:32:09.196Z","avatar_url":"https://github.com/h5bp.png","language":"JavaScript","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"readme":"# Create HTML5 Boilerplate\n\nQuick start for HTML5 Boilerplate. Get up and running with one command.\n\n## Getting Started\n\nYou can get started using one of three options- `npx`, `npm init`, or\n`yarn create`\n\u003cimg src=\"img/render1591958322106.gif\"\u003e\nUsing `npx`\n\n```\nnpx create-html5-boilerplate new-site\ncd new-site\nnpm install\nnpm start\n```\n\nUsing `npm init`\n\n```\nnpm init html5-boilerplate new-site\ncd new-site\nnpm install\nnpm start\n```\n\nUsing yarn\n\n```\nyarn create html5-boilerplate new-site\ncd new-site\nyarn install\nyarn start\n```\n\nThese commands are equivalent and do the following:\n\n1. Download and install the latest version of HTML5 Boilerplate\n2. Installs dependencies\n3. Bundles site assets and start a web server using [Parcel](https://parceljs.org/)\n4. Opens a web browser pointed to http://localhost:1234/\n\n## Requirements\n\n`create-html5-boilerplate` is cross-platform. It works wherever node and npm work.\nThe only requirements are for `npx`, which requires npm version 5.2 or greater and\n`npm init` which requires an npm version greater than 6.0. If you're stuck on an\nolder version of npm you can still use `create-html5-boilerplate` by running the\nfollowing command to install the project globally.\n\n```\nnpm install -g create-html5-boilerplate\n```\n\nThen you can use `create-html5-boilerplate` as in the following example\n\n```\ncreate-html5-boilerplate new-site\ncd new-site\nnpm install\nnpm start\n```\n\n## Installing Specific Versions\n\nYou can also install a specific version:\n\n```\nnpx create-html5-boilerplate new-site --release=7.2.0\ncd new-site\nnpm install\nnpm start\n```\n\n## CONTRIBUTING\n\n### Setting Up a Local Copy\n\n1. Clone the repo with `git clone https://github.com/h5bp/create-html5-boilerplate.git`\n2. Run `npm install` in the root `create-html5-boilerplate` folder.\n3. Run `npm link` to make npm run local copy instead of downloading from registry\n4. Now you can use `npm init html5-boilerplate` and `npx create-html5-boilerplate`\n\nnote: you can use `npx create-html5-boilerplate ./out/example` from `create-html5-boilerplate` without running `npm link`\nalso its possible to run directly NodeJS entry point `node index.js ./out/example` or `npm start`\n`./out` is git ignored folder, so you should use this folder for tests.\n\nIf you want to try out the end-to-end flow with the global CLI, you can do this too:\n\n```\nnpx create-html5-boilerplate ./out/new-site\ncd new-site\nnpm install\nnpm start\n```\n\n### Tests\n\nTests are written using [jest](https://jestjs.io/) and located in `tests/test.js`\nrun `npm test`\n\nrun coverage reports `npm run coverage`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fh5bp%2Fcreate-html5-boilerplate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fh5bp%2Fcreate-html5-boilerplate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fh5bp%2Fcreate-html5-boilerplate/lists"}