{"id":19351547,"url":"https://github.com/opensourcedoc/bootstrap-3-boilerplate","last_synced_at":"2026-04-30T02:34:55.566Z","repository":{"id":77778028,"uuid":"278210625","full_name":"opensourcedoc/bootstrap-3-boilerplate","owner":"opensourcedoc","description":"Bootstrap 3 based Front End Boilerplate Project, Powered by Gulp","archived":false,"fork":false,"pushed_at":"2023-10-05T03:27:07.000Z","size":566,"stargazers_count":0,"open_issues_count":6,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-24T10:35:45.662Z","etag":null,"topics":["boilerplate","boilerplate-front-end","boilerplate-frontend","boilerplate-html","bootstrap"],"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/opensourcedoc.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":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-07-08T22:54:21.000Z","updated_at":"2023-07-18T09:12:08.000Z","dependencies_parsed_at":null,"dependency_job_id":"9334922e-58e8-4337-a492-5f24109f6810","html_url":"https://github.com/opensourcedoc/bootstrap-3-boilerplate","commit_stats":null,"previous_names":[],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/opensourcedoc/bootstrap-3-boilerplate","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/opensourcedoc%2Fbootstrap-3-boilerplate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/opensourcedoc%2Fbootstrap-3-boilerplate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/opensourcedoc%2Fbootstrap-3-boilerplate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/opensourcedoc%2Fbootstrap-3-boilerplate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/opensourcedoc","download_url":"https://codeload.github.com/opensourcedoc/bootstrap-3-boilerplate/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/opensourcedoc%2Fbootstrap-3-boilerplate/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261013504,"owners_count":23097055,"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","boilerplate-front-end","boilerplate-frontend","boilerplate-html","bootstrap"],"created_at":"2024-11-10T04:36:34.883Z","updated_at":"2026-04-30T02:34:50.530Z","avatar_url":"https://github.com/opensourcedoc.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Bootstrap 3 Boilerplate\n\nYet another boilerplate project for front end applications. Forked from [bootstrap-4-boilerplate](https://github.com/cwchentw/bootstrap-4-boilerplate).\n\n## Note\n\nThis boilerplate project intends for tiny static sites with few pages. If you want to build a content website, see [Lightweight CMS](https://lightweightcms.org) instead.\n\n## Technology Stacks\n\nMain tools used during development:\n\n* [Gulp](https://gulpjs.com/)\n* [Nunjucks](https://mozilla.github.io/nunjucks/)\n* [Sass](https://sass-lang.com/)\n* [Autoprefixer](https://github.com/postcss/autoprefixer)\n* [stylelint](https://stylelint.io/)\n* [Babel](https://babeljs.io/)\n* [Flow](https://flow.org/en/)\n* [ESLint](https://eslint.org/)\n\nLibraries used in the output:\n\n* [Bootstrap 3](https://getbootstrap.com/docs/3.4/) and [Bootstrap.Native](http://thednp.github.io/bootstrap.native/)\n* [Polyfill.io](https://polyfill.io/v3/)\n* [HTML5 Shiv](https://github.com/aFarkas/html5shiv/)\n\n## Usage\n\n### Start a New Project\n\nClone this repo and install all tools:\n\n```\n$ git clone https://github.com/cwchentw/bootstrap-3-boilerplate.git\n$ mv html-frontend-boilerplate myapp\n$ cd myapp\n$ npm install\n```\n\nAfter editing *myapp*, update the remote URL to save it to a new remote repo:\n\n```\n$ git remote set-url origin path/to/remote/repo\n```\n\n### Build a Project\n\nInvoke this command to build a project:\n\n```\n$ npm run dev\n```\n\nThe output will be in *public* directory. During development phase, all assets will keep pretty format.\n\n### Live Code a Project\n\nInvoke this command:\n\n```\n$ npm run watch\n```\n\nVisit the output at http://localhost:3000/ . While ediing the project. the output will be updated automatically.\n\n### Publish a Project\n\nInvoke this command to build a project for production environment:\n\n```\n$ npm run prod\n```\n\nThe output will be in *public* directory. During production phase, all assets will be minified to save bandwidth.\n\nUpload the content in *public* directory to a remote web server to publish this project.\n\n## Note for Web Developers\n\nYou should **NOT** use the builtin error pages provided by your web server. Such pages usually reveal too many technical details. Instead, you should set redirecting rules and custom error pages for erroreous HTTP status codes.\n\nIn this boilerplate project, we provide a custom HTTP 404 error page. Nevertheless, the page works only on our development environment. You still need to set your own redirecting rules and custom error pages on your production environment.\n\n## Note for Bootstrap.Native Users\n\nThe version `2.0.27` is the last version of Bootstrap.Native that supports Bootstrap 3. The project only supports Bootstrap 4 since the version `3.x`.\n\n## See Also\n\nThis boilerplate project is largely inspired by [tonik/html-frontend-boilerplate](https://github.com/tonik/html-frontend-boilerplate).\n\nWhy re-inventing the wheel? That project didn't migrate to Gulp 4 yet as this repo was built. In addition, the project used [Rollup](https://rollupjs.org/guide/en/) as its bundler, which doesn't support multiple JavaScript files when combined with Gulp. Hence, I updated to Gulp 4, dropping Rollup to support multiple scripts in this repo.\n\n## Copyright\n\nCopyright 2020-2021, Michelle Chen. This repo itself is under [MIT license](http://opensource.org/licenses/MIT). Nevertheless, you may adopt it in your own project with any license you prefer.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopensourcedoc%2Fbootstrap-3-boilerplate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopensourcedoc%2Fbootstrap-3-boilerplate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopensourcedoc%2Fbootstrap-3-boilerplate/lists"}