Operating system gateway for remote serverless environments. Synapse provides a WebSocket-based interface to interact with terminal sessions, manage files, and monitor system resources remotely.
-
π₯οΈ Terminal management
- Remote terminal session control
- Command execution and output streaming
- Terminal customization options
-
π File system operations
- Complete CRUD operations for files and directories
- Path and directory management
- File system navigation and manipulation
-
π System monitoring
- Real-time CPU and memory metrics
- System load monitoring
- Performance statistics
-
π¦ Git operations
- Git repository management
- Branch operations
- Commit and push changes
- Pull and merge remote changes
-
π Code style management
- Linting and formatting
- Error detection and correction
- Code formatting options
npm install @appwrite.io/synapse
import { Synapse, Terminal } from "@appwrite.io/synapse";
// Initialize Synapse for WebSocket communication
const synapse = new Synapse("localhost", 8080);
// Connect to WebSocket server
await synapse.connect("/");
// Create terminal instance with Synapse
const terminal = new Terminal(synapse);
// Send commands to the terminal
terminal.createCommand("ls -la");
// Handle terminal output
terminal.onData((data) => {
console.log("Terminal output:", data);
});
// Resize terminal
terminal.updateSize(80, 24);
// Kill terminal
terminal.kill();
// Disconnect from WebSocket server
synapse.disconnect();
// File operations through Synapse's filesystem service
import { Synapse, Filesystem } from "@appwrite.io/synapse";
const synapse = new Synapse();
const filesystem = new Filesystem(synapse);
await filesystem.createFile("/path/to/file.txt", "Hello, World!");
const { success, data } = await filesystem.getFile("/path/to/file.txt");
const { success, data } = await filesystem.getFolder("/path/to/dir");
// Get system usage statistics through Synapse's system service
import { System } from "@appwrite.io/synapse";
const system = new System(synapse);
const { success, data } = await system.getUsage();
console.log("CPU Usage:", data.cpuUsagePercent + "%");
console.log("Memory Usage:", data.memoryUsagePercent + "%");
console.log("Load Average (1m):", data.loadAverage1m);
// Perform Git operations through Synapse's git service
import { Synapse, Git } from "@appwrite.io/synapse";
const synapse = new Synapse();
const git = new Git(synapse);
// Get current branch
const branch = await git.getCurrentBranch();
// Check repository status
const status = await git.status();
// Stage files
await git.add(["file1.txt", "file2.txt"]);
// Commit changes
await git.commit("feat: add new features");
// Pull and push changes
await git.pull();
await git.push();
// Lint and format code
import { Synapse, CodeStyle } from "@appwrite.io/synapse";
const synapse = new Synapse();
const codeStyle = new CodeStyle(synapse);
// Format code with specific options
const code = `function hello(name) {
return "Hello, " + name;
}`;
const formatResult = await codeStyle.format(code, {
language: "javascript",
indent: 2,
singleQuote: true,
semi: true,
});
console.log("Formatted code:", formatResult.data);
// Lint code for potential issues
const lintResult = await codeStyle.lint(code, {
language: "javascript",
rules: {
semi: "error",
"no-unused-vars": "warn",
},
});
if (lintResult.issues.length > 0) {
console.log("Linting issues found:", lintResult.issues);
}
synapse
.onOpen(() => {
console.log("Connected to WebSocket server");
})
.onClose(() => {
console.log("Disconnected from WebSocket server");
})
.onError((error) => {
console.error("WebSocket error:", error);
})
.onMessageType("customEvent", (message) => {
console.log("Received custom event:", message);
});
This project is licensed under the MIT License - see the LICENSE file for details.