Skip to content

Commit 14fc1f8

Browse files
authored
Merge pull request #7 from appwrite/update
chore: update sdk
2 parents dfc28eb + e3b5e48 commit 14fc1f8

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,32 +4,32 @@ Operating system gateway for remote serverless environments. Synapse provides a
44

55
## Features
66

7-
- 🖥️ Terminal Management
7+
- 🖥️ Terminal management
88

99
- Remote terminal session control
1010
- Command execution and output streaming
1111
- Terminal customization options
1212

13-
- 📂 File System Operations
13+
- 📂 File system operations
1414

1515
- Complete CRUD operations for files and directories
1616
- Path and directory management
1717
- File system navigation and manipulation
1818

19-
- 📊 System Monitoring
19+
- 📊 System monitoring
2020

2121
- Real-time CPU and memory metrics
2222
- System load monitoring
2323
- Performance statistics
2424

25-
- 📦 Git Operations
25+
- 📦 Git operations
2626

2727
- Git repository management
2828
- Branch operations
2929
- Commit and push changes
3030
- Pull and merge remote changes
3131

32-
- 📝 Code Style Management
32+
- 📝 Code style management
3333

3434
- Linting and formatting
3535
- Error detection and correction
@@ -43,7 +43,7 @@ npm install @appwrite.io/synapse
4343

4444
## Usage
4545

46-
### Basic Setup
46+
### Basic setup
4747

4848
```typescript
4949
import { Synapse, Terminal } from "@appwrite.io/synapse";
@@ -58,7 +58,7 @@ await synapse.connect("/");
5858
const terminal = new Terminal(synapse);
5959
```
6060

61-
### Terminal Operations
61+
### Terminal operations
6262

6363
```typescript
6464
// Send commands to the terminal
@@ -79,7 +79,7 @@ terminal.kill();
7979
synapse.disconnect();
8080
```
8181

82-
### File System Operations
82+
### File system operations
8383

8484
```typescript
8585
// File operations through Synapse's filesystem service
@@ -94,7 +94,7 @@ const { success, data } = await filesystem.getFile("/path/to/file.txt");
9494
const { success, data } = await filesystem.getFolder("/path/to/dir");
9595
```
9696

97-
### System Monitoring
97+
### System monitoring
9898

9999
```typescript
100100
// Get system usage statistics through Synapse's system service
@@ -107,7 +107,7 @@ console.log("Memory Usage:", data.memoryUsagePercent + "%");
107107
console.log("Load Average (1m):", data.loadAverage1m);
108108
```
109109

110-
### Git Operations
110+
### Git operations
111111

112112
```typescript
113113
// Perform Git operations through Synapse's git service
@@ -133,7 +133,7 @@ await git.pull();
133133
await git.push();
134134
```
135135

136-
### Code Style Management
136+
### Code style management
137137

138138
```typescript
139139
// Lint and format code
@@ -170,7 +170,7 @@ if (lintResult.issues.length > 0) {
170170
}
171171
```
172172

173-
### Event Handling
173+
### Event handling
174174

175175
```typescript
176176
synapse

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@appwrite.io/synapse",
3-
"version": "0.1.1",
3+
"version": "0.2.0",
44
"description": "Operating system gateway for remote serverless environments",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

0 commit comments

Comments
 (0)