@datama/light 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +79 -0
- package/dist/compare.css +9233 -0
- package/dist/compare.umd.js +3 -0
- package/package.json +210 -0
package/README.md
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
# Datama Light
|
|
2
|
+
|
|
3
|
+
A powerful data analysis visualization platform that helps you discover the WHY behind your data variations across multiple BI platforms.
|
|
4
|
+
|
|
5
|
+
> **Reduce time spent on performance variation analysis by up to 4x**, transforming data challenges into opportunities by unlocking powerful insights from your key performance indicators.
|
|
6
|
+
|
|
7
|
+
## Quick Start
|
|
8
|
+
|
|
9
|
+
### Installation
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npm ci
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
### Development Server
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
# Start development server for specific solution
|
|
19
|
+
# Available at: http://localhost:8089
|
|
20
|
+
npm run {compare|detect|explore}:serve
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Documentation
|
|
24
|
+
|
|
25
|
+
### ๐ [Getting Started](./docs/getting-started/README.md)
|
|
26
|
+
- [Prerequisites & Setup](./docs/getting-started/prerequisites.md)
|
|
27
|
+
- [Local Development](./docs/getting-started/local-development.md)
|
|
28
|
+
- [Project Overview](./docs/getting-started/project-overview.md)
|
|
29
|
+
- [Quick Start Guide](./docs/getting-started/quick-start.md)
|
|
30
|
+
|
|
31
|
+
### ๐๏ธ [Architecture](./docs/architecture/README.md)
|
|
32
|
+
- [System Overview](./docs/architecture/system-overview.md)
|
|
33
|
+
- [Project Structure](./docs/architecture/project-structure.md)
|
|
34
|
+
- [Core Components](./docs/architecture/core-components.md)
|
|
35
|
+
- [Data Flow](./docs/architecture/data-flow.md)
|
|
36
|
+
- [Platform Integrations](./docs/architecture/platform-integrations.md)
|
|
37
|
+
|
|
38
|
+
### ๐ป [Development](./docs/development/README.md)
|
|
39
|
+
- [Development Environment](./docs/development/environment.md)
|
|
40
|
+
- [Coding Standards](./docs/development/coding-standards.md)
|
|
41
|
+
- [Component Development](./docs/development/components.md)
|
|
42
|
+
- [Plotter.js Framework](./docs/development/plotter-framework.md)
|
|
43
|
+
- [Extension Development](./docs/development/extensions.md)
|
|
44
|
+
|
|
45
|
+
### ๐งช [Testing](./docs/testing/README.md)
|
|
46
|
+
- [Testing Strategy](./docs/testing/strategy.md)
|
|
47
|
+
- [Unit Testing](./docs/testing/unit-testing.md)
|
|
48
|
+
- [End-to-End Testing](./docs/testing/e2e-testing.md)
|
|
49
|
+
- [Code Coverage](./docs/testing/coverage.md)
|
|
50
|
+
- [Linting](./docs/testing/linting.md)
|
|
51
|
+
|
|
52
|
+
### ๐ [Deployment](./docs/deployment/README.md)
|
|
53
|
+
- [CI/CD Pipeline](./docs/deployment/cicd-pipeline.md)
|
|
54
|
+
- [Build Process](./docs/deployment/build-process.md)
|
|
55
|
+
- [Platform Deployment](./docs/deployment/platform-deployment.md)
|
|
56
|
+
- [Environment Management](./docs/deployment/environment-management.md)
|
|
57
|
+
|
|
58
|
+
### ๐ง [Troubleshooting](./docs/troubleshooting/README.md)
|
|
59
|
+
- [Common Issues](./docs/troubleshooting/common-issues.md)
|
|
60
|
+
- [Build Problems](./docs/troubleshooting/build-problems.md)
|
|
61
|
+
- [Platform-Specific Issues](./docs/troubleshooting/platform-issues.md)
|
|
62
|
+
- [Performance Issues](./docs/troubleshooting/performance.md)
|
|
63
|
+
|
|
64
|
+
## External Links
|
|
65
|
+
|
|
66
|
+
- [Microsoft AppSource](https://appsource.microsoft.com/en-us/product/power-bi-visuals/datama1591255760056.datama-light-compare?tab=Overview)
|
|
67
|
+
- [Datama Official Website](https://datama.fr)
|
|
68
|
+
|
|
69
|
+
## Contributing
|
|
70
|
+
|
|
71
|
+
Please read our [Development Guide](./docs/development/README.md) and [Coding Standards](./docs/development/coding-standards.md) before contributing.
|
|
72
|
+
|
|
73
|
+
## License
|
|
74
|
+
|
|
75
|
+
© Copyright 2024 Datama SAS. All rights reserved.
|
|
76
|
+
|
|
77
|
+
---
|
|
78
|
+
|
|
79
|
+
**Need help?** Check our [Troubleshooting Guide](./docs/troubleshooting/README.md) or review the [Getting Started](./docs/getting-started/README.md) documentation.
|