@fnet/cli 0.111.1 → 0.111.2
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/package.json +1 -1
- package/{README.md → readme.md} +5 -8
package/package.json
CHANGED
package/{README.md → readme.md}
RENAMED
|
@@ -20,7 +20,7 @@ Flownet is a revolutionary development framework that isolates non-functional co
|
|
|
20
20
|
|
|
21
21
|
### Key Features
|
|
22
22
|
|
|
23
|
-
- **Language Agnostic**: Support for multiple programming languages (JavaScript, Python
|
|
23
|
+
- **Language Agnostic**: Support for multiple programming languages (JavaScript, Python) in the same project
|
|
24
24
|
- **Runtime Flexibility**: Choose the best runtime for each task (Node.js, Python, Bun)
|
|
25
25
|
- **Unified Interface**: Consistent commands across different project types
|
|
26
26
|
- **Tag-Based Configuration**: Powerful conditional configuration with `--ftag` parameter
|
|
@@ -101,16 +101,13 @@ Flownet provides three main CLI tools:
|
|
|
101
101
|
|
|
102
102
|
## Multi-Language Support
|
|
103
103
|
|
|
104
|
-
Flownet
|
|
104
|
+
Flownet supports multiple programming languages simultaneously within the same project:
|
|
105
105
|
|
|
106
106
|
```text
|
|
107
107
|
my-project/
|
|
108
108
|
├── src/
|
|
109
|
-
│ ├── index.js # JavaScript implementation
|
|
110
|
-
│
|
|
111
|
-
│ ├── index.go # Go implementation
|
|
112
|
-
│ ├── index.rs # Rust implementation
|
|
113
|
-
│ └── index.c # C implementation
|
|
109
|
+
│ ├── index.js # JavaScript implementation (used by both Node.js and Bun)
|
|
110
|
+
│ └── index.py # Python implementation
|
|
114
111
|
├── fnode.yaml # Project configuration file
|
|
115
112
|
└── .workspace/ # Build infrastructure (managed by CLI)
|
|
116
113
|
```
|
|
@@ -119,7 +116,7 @@ This allows you to:
|
|
|
119
116
|
|
|
120
117
|
- Write your core logic once and migrate it to other languages as needed
|
|
121
118
|
- Choose the best language for each specific use case
|
|
122
|
-
-
|
|
119
|
+
- Use JavaScript with Node.js for quick development, Python for data processing, and JavaScript with Bun for improved performance
|
|
123
120
|
|
|
124
121
|
## Tag-Based Configuration
|
|
125
122
|
|