{"id":13406389,"url":"https://github.com/influxdata/ui","last_synced_at":"2026-04-29T23:05:10.067Z","repository":{"id":37009725,"uuid":"279622976","full_name":"influxdata/ui","owner":"influxdata","description":"UI for InfluxDB","archived":false,"fork":false,"pushed_at":"2026-04-22T20:05:14.000Z","size":62711,"stargazers_count":115,"open_issues_count":569,"forks_count":50,"subscribers_count":33,"default_branch":"master","last_synced_at":"2026-04-22T21:07:44.735Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/influxdata.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2020-07-14T15:26:25.000Z","updated_at":"2026-04-22T19:15:44.000Z","dependencies_parsed_at":"2024-01-19T20:28:01.358Z","dependency_job_id":"4b4b9ac8-d04e-44ba-9aa6-1796dba86b9e","html_url":"https://github.com/influxdata/ui","commit_stats":null,"previous_names":[],"tags_count":25,"template":false,"template_full_name":null,"purl":"pkg:github/influxdata/ui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/influxdata%2Fui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/influxdata%2Fui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/influxdata%2Fui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/influxdata%2Fui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/influxdata","download_url":"https://codeload.github.com/influxdata/ui/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/influxdata%2Fui/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32447312,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T22:27:22.272Z","status":"ssl_error","status_checked_at":"2026-04-29T22:10:49.234Z","response_time":110,"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-07-30T19:02:28.962Z","updated_at":"2026-04-29T23:05:10.030Z","avatar_url":"https://github.com/influxdata.png","language":"TypeScript","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"readme":"## Packages\n\n### Adding new packages\n\nTo add a new package, run\n\n```sh\nyarn add packageName\n```\n\n### Adding devDependency\n\n```sh\nyarn add packageName --dev\n```\n\n### Updating a package\n\nFirst, run the command:\n\n```sh\nyarn outdated\n```\n\n... to determine which packages may need upgrading.\n\nWe _really_ should not upgrade all packages at once, but, one at a time and make darn sure\nto test.\n\nTo upgrade a single package named `packageName`:\n\n```sh\nyarn upgrade packageName\n```\n\n## Unit Testing\n\nUnit tests can be run via command line with `yarn test`, from within the `/ui` directory. For more detailed reporting, use `yarn test -- --reporters=verbose`.\n\n\n## Local dev\n\n**cloud platform**\n1. From k8s-idpe, start the remocal service with loopback to your local ui changes.\n    1. have your remocal instance build and deployed. See [docs here](https://docs.influxdata.io/development/remocal/getting-started/).\n    1. `make remocal-dev APPS=ui DETACHED=1`\n1. From the ui directory. Build the local dev server:\n    1. set env vars for `PUBLIC` (your remocal url)\n    1. `yarn install \u0026\u0026 yarn start:dev:remocal`\n    1. `yarn link` different javascript libraries (e.g. giraffe, clockface, flux-lsp) as needed.\n        * note that the flux-lsp wasm build produces an output directory which contains a package.json for the release. Make sure to `yarn link` to this directory.\n\n**oss platform**\n1. From oss/influxdb repo, start the backend service.\n    1. setup service following the [contributing guide](https://github.com/influxdata/influxdb/blob/master/CONTRIBUTING.md#how-to-build-influxdb-from-source).\n    1. run the service, goto browser `localhost:8086`\n    1. create a login/password. (Remember these!)\n    1. **CAVEAT**: influxdb/oss does not have live reload.\n        * instead, run `make` and restart influxdb\n1. From the ui directory. Build the local dev server:\n    1. `yarn install \u0026\u0026 yarn start:dev:oss`\n    1. goto browser `localhost:8080`\n    1. the same login/password pair should work.\n    1. **CAVEAT**: live reload does not work, so you need to refresh the browser page.\n\n## Cypress Testing\n\n**cloud platform**\n1. have your local dev running (see above).\n1. `export NS=\u003cyour-remocal-namespace\u003e`\n1. run cypress test:\n    * `yarn test:e2e:remocal` to test on tsm storage\n    * `yarn test:e2e:remocal:iox` to test on iox storage\n\n**oss platform**\n1. have your local dev running (see above).\n    * Make sure to start your oss backend service with `--e2e-testing` flag.\n1. run cypress test:\n    * `yarn test:e2e:oss`\n\n**Generating Test Reports**\n* to run all tests [in series] locally, and generate a report: `yarn test:e2e:\u003cwhatever\u003e:report`\n    * e.g. `yarn test:e2e:remocal:report`, `yarn test:e2e:remocal:iox:report`, `yarn test:e2e:oss:report`\n* this will run in headless mode, so no browser will be shown. Just a stdout waiting as each test runs.\n    * **WARNING**: This takes a long time, unlike CI which runs in parallel.\n* after all tests complete, it will automatically open a test result viewer.\n* any screenshots or vids will be saved in `cypress/videos` and `cypress/screenshots`\n\n\n## What is oats?\nOats is how we automatically generate our typescript definitions based open the openapi contract. See [here for more details](https://github.com/influxdata/oats). After one of the `yarn generate` scripts are run, the typescript definitions are usually output to `./src/client/`.\n\n\n## Zuora Form\n\n**Troubleshooting**: If your Zuora form isn't rendering or calling your callback function which you passed in `client.render`.\nWhen running UI locally using [Monitor CI](https://github.com/influxdata/monitor-ci), get Zuora PageID which you are using to render the form. Then, from Zuora admin console, get the `Host` and `Port` that PageID is corresponding to. Make sure to match those `Host` and `Port` with your `INGRESS_HOST` and `PORT_HTTPS` provided in the `.env` file of `monitor-ci`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finfluxdata%2Fui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Finfluxdata%2Fui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finfluxdata%2Fui/lists"}