@@ -4,32 +4,32 @@ Operating system gateway for remote serverless environments. Synapse provides a
4
4
5
5
## Features
6
6
7
- - 🖥️ Terminal Management
7
+ - 🖥️ Terminal management
8
8
9
9
- Remote terminal session control
10
10
- Command execution and output streaming
11
11
- Terminal customization options
12
12
13
- - 📂 File System Operations
13
+ - 📂 File system operations
14
14
15
15
- Complete CRUD operations for files and directories
16
16
- Path and directory management
17
17
- File system navigation and manipulation
18
18
19
- - 📊 System Monitoring
19
+ - 📊 System monitoring
20
20
21
21
- Real-time CPU and memory metrics
22
22
- System load monitoring
23
23
- Performance statistics
24
24
25
- - 📦 Git Operations
25
+ - 📦 Git operations
26
26
27
27
- Git repository management
28
28
- Branch operations
29
29
- Commit and push changes
30
30
- Pull and merge remote changes
31
31
32
- - 📝 Code Style Management
32
+ - 📝 Code style management
33
33
34
34
- Linting and formatting
35
35
- Error detection and correction
@@ -43,7 +43,7 @@ npm install @appwrite.io/synapse
43
43
44
44
## Usage
45
45
46
- ### Basic Setup
46
+ ### Basic setup
47
47
48
48
``` typescript
49
49
import { Synapse , Terminal } from " @appwrite.io/synapse" ;
@@ -58,7 +58,7 @@ await synapse.connect("/");
58
58
const terminal = new Terminal (synapse );
59
59
```
60
60
61
- ### Terminal Operations
61
+ ### Terminal operations
62
62
63
63
``` typescript
64
64
// Send commands to the terminal
@@ -79,7 +79,7 @@ terminal.kill();
79
79
synapse .disconnect ();
80
80
```
81
81
82
- ### File System Operations
82
+ ### File system operations
83
83
84
84
``` typescript
85
85
// File operations through Synapse's filesystem service
@@ -94,7 +94,7 @@ const { success, data } = await filesystem.getFile("/path/to/file.txt");
94
94
const { success, data } = await filesystem .getFolder (" /path/to/dir" );
95
95
```
96
96
97
- ### System Monitoring
97
+ ### System monitoring
98
98
99
99
``` typescript
100
100
// Get system usage statistics through Synapse's system service
@@ -107,7 +107,7 @@ console.log("Memory Usage:", data.memoryUsagePercent + "%");
107
107
console .log (" Load Average (1m):" , data .loadAverage1m );
108
108
```
109
109
110
- ### Git Operations
110
+ ### Git operations
111
111
112
112
``` typescript
113
113
// Perform Git operations through Synapse's git service
@@ -133,7 +133,7 @@ await git.pull();
133
133
await git .push ();
134
134
```
135
135
136
- ### Code Style Management
136
+ ### Code style management
137
137
138
138
``` typescript
139
139
// Lint and format code
@@ -170,7 +170,7 @@ if (lintResult.issues.length > 0) {
170
170
}
171
171
```
172
172
173
- ### Event Handling
173
+ ### Event handling
174
174
175
175
``` typescript
176
176
synapse
0 commit comments