gitextract_fqly1mie/ ├── .all-contributorsrc ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug-report.md │ │ └── new-hello-world-project.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── copilot-instructions.md │ ├── dependabot.yml │ └── workflows/ │ ├── ci.yml │ └── copilot-setup-steps.yml ├── .gitignore ├── .prettier.js ├── .vscode/ │ └── settings.json ├── AGENTS.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── alpine/ │ └── index.html ├── angular/ │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── angular.json │ ├── package.json │ ├── src/ │ │ ├── app/ │ │ │ └── app.ts │ │ ├── assets/ │ │ │ └── .gitkeep │ │ ├── index.html │ │ ├── main.ts │ │ └── styles.css │ ├── tsconfig.app.json │ └── tsconfig.json ├── angular-universal/ │ ├── .browserslistrc │ ├── .gitignore │ ├── README.md │ ├── angular.json │ ├── package.json │ ├── server.ts │ ├── src/ │ │ ├── app/ │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── app.server.module.ts │ │ │ └── package.json │ │ ├── assets/ │ │ │ └── .gitkeep │ │ ├── environments/ │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── index.html │ │ ├── main.server.ts │ │ ├── main.ts │ │ ├── polyfills.ts │ │ └── styles.css │ ├── tsconfig.app.json │ ├── tsconfig.base.json │ ├── tsconfig.json │ └── tsconfig.server.json ├── angularjs/ │ └── index.html ├── aurelia/ │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── aurelia_project/ │ │ ├── aurelia.json │ │ ├── generators/ │ │ │ ├── attribute.json │ │ │ ├── attribute.ts │ │ │ ├── binding-behavior.json │ │ │ ├── binding-behavior.ts │ │ │ ├── component.json │ │ │ ├── component.ts │ │ │ ├── element.json │ │ │ ├── element.ts │ │ │ ├── generator.json │ │ │ ├── generator.ts │ │ │ ├── task.json │ │ │ ├── task.ts │ │ │ ├── value-converter.json │ │ │ └── value-converter.ts │ │ └── tasks/ │ │ ├── build.json │ │ ├── build.ts │ │ ├── jest.json │ │ ├── jest.ts │ │ ├── run.json │ │ ├── run.ts │ │ ├── test.json │ │ └── test.ts │ ├── config/ │ │ ├── environment.json │ │ └── environment.production.json │ ├── index.ejs │ ├── package.json │ ├── src/ │ │ ├── app.html │ │ ├── app.ts │ │ ├── main.ts │ │ └── resources/ │ │ └── index.ts │ ├── tsconfig.json │ ├── tslint.json │ ├── types/ │ │ ├── fetch.d.ts │ │ └── system.d.ts │ └── webpack.config.js ├── babylonjs/ │ └── index.html ├── backbone/ │ ├── README.md │ ├── index.html │ ├── index.js │ └── libs/ │ ├── backbone-min.js │ └── underscore-min.js ├── blazor/ │ ├── .gitignore │ ├── App.razor │ ├── HelloWorld.csproj │ ├── Program.cs │ ├── Properties/ │ │ └── launchSettings.json │ ├── README.md │ └── wwwroot/ │ └── index.html ├── eleventy/ │ ├── .gitignore │ ├── index.md │ └── package.json ├── elm/ │ ├── .gitignore │ ├── README.md │ ├── elm.json │ ├── package.json │ ├── public/ │ │ └── index.html │ └── src/ │ └── Main.elm ├── ember/ │ ├── .editorconfig │ ├── .ember-cli │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── .template-lintrc.js │ ├── .watchmanconfig │ ├── README.md │ ├── app/ │ │ ├── app.js │ │ ├── index.html │ │ ├── styles/ │ │ │ └── app.css │ │ └── templates/ │ │ └── application.hbs │ ├── config/ │ │ ├── environment.js │ │ ├── optional-features.json │ │ └── targets.js │ ├── ember-cli-build.js │ ├── package.json │ └── public/ │ └── robots.txt ├── flutter/ │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── android/ │ │ ├── .gitignore │ │ ├── app/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ ├── debug/ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── main/ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin/ │ │ │ │ │ └── com/ │ │ │ │ │ └── example/ │ │ │ │ │ └── hello_flutter/ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res/ │ │ │ │ ├── drawable/ │ │ │ │ │ └── launch_background.xml │ │ │ │ └── values/ │ │ │ │ └── styles.xml │ │ │ └── profile/ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle/ │ │ │ └── wrapper/ │ │ │ └── gradle-wrapper.properties │ │ ├── gradle.properties │ │ └── settings.gradle │ ├── ios/ │ │ ├── .gitignore │ │ ├── Flutter/ │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Runner/ │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets/ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── LaunchImage.imageset/ │ │ │ │ ├── Contents.json │ │ │ │ └── README.md │ │ │ ├── Base.lproj/ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── Runner-Bridging-Header.h │ │ ├── Runner.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata/ │ │ │ └── xcschemes/ │ │ │ └── Runner.xcscheme │ │ └── Runner.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings │ ├── lib/ │ │ └── main.dart │ ├── pubspec.yaml │ ├── test/ │ │ └── widget_test.dart │ └── web/ │ ├── index.html │ └── manifest.json ├── gatsby/ │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── gatsby-config.js │ ├── package.json │ └── src/ │ └── pages/ │ └── index.js ├── glimmer/ │ ├── .babelrc.js │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package.json │ ├── public/ │ │ └── manifest.json │ ├── src/ │ │ ├── App.js │ │ └── index.js │ ├── tsconfig.json │ └── webpack.config.js ├── gridsome/ │ ├── .gitignore │ ├── README.md │ ├── gridsome.config.js │ ├── package.json │ └── src/ │ ├── layouts/ │ │ └── Default.vue │ ├── main.js │ └── pages/ │ └── Index.vue ├── html/ │ └── index.html ├── hugo/ │ ├── .gitignore │ ├── archetypes/ │ │ └── default.md │ ├── config.toml │ ├── content/ │ │ └── _index.md │ ├── package.json │ └── themes/ │ └── hello-world/ │ ├── LICENSE │ ├── archetypes/ │ │ └── default.md │ ├── layouts/ │ │ ├── 404.html │ │ ├── _default/ │ │ │ ├── baseof.html │ │ │ ├── list.html │ │ │ └── single.html │ │ ├── index.html │ │ └── partials/ │ │ ├── footer.html │ │ ├── head.html │ │ └── header.html │ └── theme.toml ├── hyperapp/ │ ├── hello-world.js │ └── index.html ├── ionic-angular/ │ ├── .gitignore │ ├── angular.json │ ├── browserslist │ ├── ionic.config.json │ ├── karma.conf.js │ ├── package.json │ ├── src/ │ │ ├── app/ │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ └── app.module.ts │ │ ├── environments/ │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── global.scss │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── theme/ │ │ │ └── variables.scss │ │ └── zone-flags.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ └── tslint.json ├── ionic-react/ │ ├── .gitignore │ ├── capacitor.config.json │ ├── ionic.config.json │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ └── manifest.json │ ├── src/ │ │ ├── App.tsx │ │ ├── index.tsx │ │ ├── react-app-env.d.ts │ │ ├── serviceWorker.ts │ │ └── theme/ │ │ └── variables.css │ └── tsconfig.json ├── javascript/ │ ├── README.md │ ├── hello-world.js │ └── index.html ├── jquery/ │ └── index.html ├── knockoutjs/ │ ├── .gitignore │ ├── index.html │ ├── package.json │ ├── src/ │ │ └── app.js │ └── webpack.config.js ├── lit-element/ │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── custom-elements.json │ ├── index.html │ ├── package.json │ ├── rollup.config.js │ └── src/ │ ├── HelloWorld.js │ └── hello-world.js ├── marko/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ └── index.html │ ├── src/ │ │ ├── app.js │ │ └── app.marko │ └── webpack.config.js ├── meteor/ │ ├── .gitignore │ ├── .meteor/ │ │ ├── .finished-upgraders │ │ ├── .gitignore │ │ ├── .id │ │ ├── packages │ │ ├── platforms │ │ ├── release │ │ └── versions │ ├── README.md │ ├── client/ │ │ ├── main.css │ │ ├── main.html │ │ └── main.js │ ├── package.json │ └── server/ │ └── main.js ├── mithril/ │ ├── package.json │ └── src/ │ ├── README.md │ ├── index.html │ └── index.js ├── nextjs/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ └── pages/ │ └── index.js ├── nuxtjs/ │ ├── .gitignore │ ├── README.md │ ├── layouts/ │ │ └── default.vue │ ├── nuxt.config.js │ ├── package.json │ └── pages/ │ └── index.vue ├── polymer/ │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── manifest.json │ ├── package.json │ ├── polymer.json │ └── src/ │ ├── _element/ │ │ └── _element.js │ └── hello-world/ │ └── hello-world.js ├── preact/ │ ├── index.html │ ├── package.json │ ├── src/ │ │ └── app.js │ └── webpack.config.js ├── react/ │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ └── robots.txt │ ├── src/ │ │ ├── App.jsx │ │ ├── index.css │ │ └── index.jsx │ └── vite.config.js ├── riot/ │ ├── index.html │ ├── package.json │ ├── readme.md │ ├── src/ │ │ ├── app.riot │ │ └── index.js │ └── webpack.config.js ├── scully/ │ ├── .editorconfig │ ├── .gitignore │ ├── .prettierrc │ ├── README.md │ ├── angular.json │ ├── browserslist │ ├── karma.conf.js │ ├── package.json │ ├── scully.hello.config.js │ ├── scully.hello.config.ts │ ├── src/ │ │ ├── app/ │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.ts │ │ │ └── app.module.ts │ │ ├── assets/ │ │ │ ├── .gitkeep │ │ │ └── scully-routes.json │ │ ├── environments/ │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── tslint.json ├── stencil/ │ ├── .editorconfig │ ├── .gitignore │ ├── LICENSE │ ├── package.json │ ├── readme.md │ ├── src/ │ │ ├── components/ │ │ │ └── app-root/ │ │ │ ├── app-root.css │ │ │ └── app-root.tsx │ │ ├── components.d.ts │ │ ├── index.html │ │ ├── index.ts │ │ └── manifest.json │ ├── stencil.config.ts │ └── tsconfig.json ├── svelte/ │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package.json │ ├── src/ │ │ ├── App.svelte │ │ └── main.js │ ├── svelte.config.js │ └── vite.config.js ├── threejs/ │ └── index.html ├── typescript/ │ ├── copy-index.js │ ├── index.html │ ├── package.json │ ├── src/ │ │ └── app.ts │ └── tsconfig.json ├── vue/ │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package.json │ ├── src/ │ │ ├── App.vue │ │ └── main.js │ └── vite.config.js ├── vuepress/ │ ├── .gitignore │ ├── docs/ │ │ └── README.md │ └── package.json └── web-component/ ├── index.html └── script.js