@async-fusion/data 1.0.2 → 1.0.4
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 +8 -13
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
### Unified Data Streaming Library for Kafka, Spark, and Modern Data Pipelines
|
|
1
|
+
### A Unified Data Streaming Library for Kafka, Spark, and Modern Data Pipelines
|
|
4
2
|
|
|
5
3
|
Built with lots of bugs :P and love <3 by Udayan Sharma
|
|
6
4
|
|
|
@@ -10,14 +8,13 @@ Built with lots of bugs :P and love <3 by Udayan Sharma
|
|
|
10
8
|
[](LICENSE)
|
|
11
9
|
[](https://nodejs.org/)
|
|
12
10
|
|
|
13
|
-
[Documentation](https://github.com/
|
|
14
|
-
[Report Bug](https://github.com/
|
|
15
|
-
[Request Feature](https://github.com/
|
|
16
|
-
[Examples](./examples)
|
|
11
|
+
[Documentation](https://github.com/hollermay/async-fusion-data) •
|
|
12
|
+
[Report Bug](https://github.com/hollermay/async-fusion-data/issues) •
|
|
13
|
+
[Request Feature](https://github.com/hollermay/async-fusion-data/issues)
|
|
17
14
|
|
|
18
15
|
---
|
|
19
16
|
|
|
20
|
-
##
|
|
17
|
+
## Index
|
|
21
18
|
|
|
22
19
|
- [Why This Library?](#why-this-library)
|
|
23
20
|
- [Features](#features)
|
|
@@ -50,7 +47,7 @@ Building real-time data pipelines today requires juggling multiple technologies:
|
|
|
50
47
|
@async-fusion/data provides a unified API that brings Kafka streaming, Spark processing, and production-grade error handling into a single, easy-to-use library.
|
|
51
48
|
|
|
52
49
|
```javascript
|
|
53
|
-
// One library
|
|
50
|
+
// One library use all
|
|
54
51
|
const { PipelineBuilder, KafkaStream, SparkClient } = require('@async-fusion/data');
|
|
55
52
|
|
|
56
53
|
// Build complex pipelines with simple code
|
|
@@ -640,7 +637,7 @@ We welcome contributions! Please see our Contributing Guide.
|
|
|
640
637
|
|
|
641
638
|
```bash
|
|
642
639
|
# Clone the repository
|
|
643
|
-
git clone https://github.com/
|
|
640
|
+
git clone https://github.com/hollermay/async-fusion-data.git
|
|
644
641
|
|
|
645
642
|
# Install dependencies
|
|
646
643
|
npm install
|
|
@@ -688,11 +685,9 @@ This project is licensed under the MIT License - see the LICENSE file for detail
|
|
|
688
685
|
|
|
689
686
|
- GitHub Issues: Report bugs
|
|
690
687
|
- Discussions: Ask questions
|
|
691
|
-
- Email: udayan.sharma@example.com
|
|
692
688
|
|
|
693
|
-
Built with love by Udayan Sharma
|
|
694
689
|
|
|
695
|
-
"
|
|
690
|
+
"Please do run this and let me know what I can do better for this"
|
|
696
691
|
|
|
697
692
|
[Back to Top](#async-fusiondata)
|
|
698
693
|
```
|