{"id":29293567,"url":"https://github.com/aulanchik/data-explorer","last_synced_at":"2026-05-11T07:44:56.613Z","repository":{"id":301715052,"uuid":"861426478","full_name":"aulanchik/data-explorer","owner":"aulanchik","description":null,"archived":false,"fork":false,"pushed_at":"2025-06-28T10:56:28.000Z","size":158,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-28T11:39:30.457Z","etag":null,"topics":["axios","react","react-context-api","react-memoisation","sass","typescript"],"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/aulanchik.png","metadata":{"files":{"readme":"README.md","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,"zenodo":null}},"created_at":"2024-09-22T21:17:06.000Z","updated_at":"2025-06-28T10:56:31.000Z","dependencies_parsed_at":"2025-06-28T11:50:50.262Z","dependency_job_id":null,"html_url":"https://github.com/aulanchik/data-explorer","commit_stats":null,"previous_names":["aulanchik/data-explorer"],"tags_count":0,"template":false,"template_full_name":"aulanchik/vite-react-ts","purl":"pkg:github/aulanchik/data-explorer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aulanchik%2Fdata-explorer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aulanchik%2Fdata-explorer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aulanchik%2Fdata-explorer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aulanchik%2Fdata-explorer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aulanchik","download_url":"https://codeload.github.com/aulanchik/data-explorer/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aulanchik%2Fdata-explorer/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263889804,"owners_count":23525616,"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":["axios","react","react-context-api","react-memoisation","sass","typescript"],"created_at":"2025-07-06T11:06:14.294Z","updated_at":"2026-05-11T07:44:51.573Z","avatar_url":"https://github.com/aulanchik.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Data Explorer\n\nThis repository contains a foundational front-end application for exploring data, built with React, TypeScript, and Vite.\nIt is designed to serve as a starting point for visualizing and interacting with datasets, and includes a sample dataset of applications with associated spending and business capabilities.\nMain goal of this project is to test react memoization and react context API capabilities.\n\n## Tech Stack\n- **Framework:** React 18\n- **Language:** TypeScript\n- **Build Tool:** Vite\n- **Styling:** Sass (setup)\n- **Linting:** ESLint\n- **Formatting:** Prettier\n\n## Project Structure\n\nThe project follows a standard Vite/React structure. Key files and directories include:\n\n```\ndata-explorer/\n├── src/\n│   ├── data/\n│   │   └── applications.json # Sample application dataset\n│   ├── App.tsx            # Main application component\n│   └── main.tsx           # React application entry point\n├── package.json           # Project dependencies and scripts\n├── tsconfig.json          # TypeScript compiler options\n└── vite.config.ts         # Vite configuration\n```\n\n## Data Model\n\nThe application uses a sample dataset located at `src/data/applications.json`. The data is an array of objects, where each object represents an application with the following structure:\n\n```json\n{\n  \"id\": \"app-1\",\n  \"name\": \"Application 1\",\n  \"spend\": 29822,\n  \"BCAP1\": \"Business Capability 1\",\n  \"BCAP2\": \"Business Capability 1.2\",\n  \"BCAP3\": \"Business Capability 1.2.3\"\n}\n```\n\n- **`id`**: A unique identifier for the application.\n- **`name`**: The display name of the application.\n- **`spend`**: A numerical value representing application spend.\n- **`BCAP1`, `BCAP2`, `BCAP3`**: A hierarchical representation of the application's business capability.\n\n## Getting Started\n\nTo get the project running on your local machine, follow these steps.\n\n### Prerequisites\n\n- [Node.js](https://nodejs.org/) (v18 or newer)\n- [npm](https://www.npmjs.com/) (included with Node.js) or [yarn](https://yarnpkg.com/)\n\n### Installation \u0026 Setup\n\n1.  **Clone the repository:**\n    ```sh\n    git clone https://github.com/aulanchik/data-explorer.git\n    ```\n\n2.  **Navigate to the project directory:**\n    ```sh\n    cd data-explorer\n    ```\n\n3.  **Install dependencies:**\n    ```sh\n    npm install\n    ```\n\n## Available Scripts\n\nIn the project directory, you can run the following commands:\n\n### `npm run dev`\n\nRuns the app in development mode. Open [http://localhost:5173](http://localhost:5173) (or the port specified in your terminal) to view it in the browser. The page will reload if you make edits.\n\n### `npm run build`\n\nBuilds the app for production to the `dist` folder. It correctly bundles React in production mode and optimizes the build for the best performance.\n\n### `npm run lint`\n\nLints the project's source files using ESLint to check for code quality and style issues.\n\n### `npm run preview`\n\nStarts a local static web server that serves the files from the `dist` directory. This is useful for previewing the production build before deployment.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faulanchik%2Fdata-explorer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faulanchik%2Fdata-explorer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faulanchik%2Fdata-explorer/lists"}