{"id":21029881,"url":"https://github.com/kitconcept/website-starter-performance","last_synced_at":"2026-03-17T23:34:47.577Z","repository":{"id":75201900,"uuid":"46605102","full_name":"kitconcept/website-starter-performance","owner":"kitconcept","description":null,"archived":false,"fork":false,"pushed_at":"2018-01-22T14:43:22.000Z","size":3380,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-02-17T11:31:38.777Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kitconcept.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2015-11-21T07:07:03.000Z","updated_at":"2018-01-22T14:29:09.000Z","dependencies_parsed_at":"2023-06-18T18:07:33.046Z","dependency_job_id":null,"html_url":"https://github.com/kitconcept/website-starter-performance","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kitconcept/website-starter-performance","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kitconcept%2Fwebsite-starter-performance","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kitconcept%2Fwebsite-starter-performance/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kitconcept%2Fwebsite-starter-performance/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kitconcept%2Fwebsite-starter-performance/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kitconcept","download_url":"https://codeload.github.com/kitconcept/website-starter-performance/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kitconcept%2Fwebsite-starter-performance/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30635184,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-17T22:38:22.569Z","status":"ssl_error","status_checked_at":"2026-03-17T22:38:11.804Z","response_time":56,"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":[],"created_at":"2024-11-19T12:14:50.847Z","updated_at":"2026-03-17T23:34:47.534Z","avatar_url":"https://github.com/kitconcept.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":".. image:: https://travis-ci.org/kitconcept/website-starter-performance.svg?branch=master\n    :target: https://travis-ci.org/kitconcept/website-starter-performance\n\nWebsite Starter\n===============\n\nCreate directory::\n\n  $ mkdir website-starter\n\nInitialize npm::\n\n  $ npm init\n  entry point: (index.js) src/index.js\n\nInstall basic dependencies::\n\n  $ npm install webpack --save-dev\n  $ npm install babel-loader@5.3.2 --save-dev\n  $ npm install html-webpack-plugin --save-dev\n\nCreate webpack configuration file::\n\n  ...\n\nInstall dependencies::\n\n  $ npm install bootstrap\n  $ npm install jquery\n\n\n\nPage Speed Insights\n-------------------\n\nInstall PSI globally::\n\n  $ npm install --save psi\n\nWebPageTest\n-----------\n\nInstall WebPageTest globally:\n\n  $ npm install webpagetest -g\n\nRequest WebPageTest API key at...\n\nExport WebPageTest API key on command line::\n\n  $ export WEBPAGETEST_API_KEY=\u003cINSERT_API_KEY_HERE\u003e\n\nRun WebPageTest:\n\n  $ npm run webpagetest\n\nImage Optimization\n------------------\n\nInstall image-webpack-loader::\n\n  $ npm install image-webpack-loader --save-dev\n\nEnable image-webpack-loader for all images (\"webpack.config.js\")::\n\n  module: {\n    loaders: [\n      { test: /\\.js$/, loader: 'babel-loader', exclude: /node_modules/ },\n      { test: /\\.css$/, loader: \"style-loader!css-loader\" },\n      {\n        test: /\\.(png|jpg|ico)$/,\n        loaders: [\n            'file-loader?name=[name].[ext]',\n            'image-webpack?progressive=true\u0026bypassOnDebug\u0026optimizationLevel=7\u0026interlaced=false'\n        ]\n      },\n    ]\n  }\n\n\nDeployment\n----------\n\nDeploy to Heroku.\n\nCreate Heroku instance::\n\n  $ heroku create\n\nPush repository to Heroku::\n\n  $ git push heroku master\n\n\nTravis Integration\n------------------\n\nCreate a Travis CI configuration file (\".travis.yml\")::\n\n  language: node_js\n  node_js:\n  - 4.2.1\n  install:\n  - npm install psi -g\n  - npm install webpagetest -g\n  script:\n  - psi psi.kitconcept.com --threshold 99\n  - webpagetest test http://psi.kitconcept.com  -k $WPT_API_KEY --poll --specs testspecs.json --reporter spec\n  notifications:\n    email:\n    - tisto@plone.org\n\nInstall Travis command line client::\n\n  $ gem install travis\n\nStore the encrypted WebPageTest API Key in your .travis.yml::\n\n  $ travis encrypt WPT_API_KEY=\u003cYOUR_SECRET_API_KEY\u003e --add\n\nThis will append an encrypted API key to your .travis.yml so that it looks like this::\n\n  language: node_js\n  node_js:\n  - 4.2.1\n  install:\n  - npm install psi -g\n  - npm install webpagetest -g\n  script:\n  - psi psi.kitconcept.com --threshold 99\n  - webpagetest test http://psi.kitconcept.com  -k $WPT_API_KEY --poll --specs testspecs.json --reporter spec\n  notifications:\n    email:\n    - tisto@plone.org\n  env:\n    global:\n      secure: qlP9/bsYvgu49v3V7BTQ0uKe/0WaPr3AokhXDDECcc1SvbhQqfbU5/xPtaExlntHM1zesFM9WK667zWA2OnZbA3HAeQOHVuaipCJejK6yn/cxW5/JA2v0JlHrVQ357i8emSH8VwckSbweWrsDYA1YTRY7xs91sFGKTNYLiWUlc3ZxFq71MYvBC9fbTFPdqkZzW0tIpIFVtwO7BRgYtYviIkL1FygyxNPEEt4VHM/jG9l7NtEqi5LIKb8amfcMM4gRmdbyleLQdjXs5F/MzE8v9RFXppuElWbdPHti48B1w89ba2FrJfXNmdL26zR/QxWrsjNn29lzxs3K9K2/ar3zQTOmVcltjF5bM1EbytINWnsdXVwKGAwt8cbseNcv/Q5P6CL6fBgmkbDNcSV4ZbVoFamRIeX1LAJC74INpA8Zid+ul2pdnnYVCOWY0MtXmHOigL/bHNcvrjrFEmX76GvJOT/twceEWHn/6O5s3LFySKzeYEW/NH+aW4ifFGHcTRxcjKhdEyAp2GEEjyinoDILdr8Ic2pzLUawkZOr6zGregXw679rvHHFhH9NITPJVdUsL9jQU1J6ZAXsBT1YxC8Jso/QHsulCCPvQeAGAi6ZwJWZGIOyyOJ5/mokkAMXBo70AdQiuA3s9wK+YrIRM0Q5TDWZcUTFgz1JvyA0YUKi58=\n\nEnable Travis build.\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkitconcept%2Fwebsite-starter-performance","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkitconcept%2Fwebsite-starter-performance","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkitconcept%2Fwebsite-starter-performance/lists"}