Next.js Web SSH Terminal

A powerful, modern SSH terminal built with Next.js and @xterm/xterm v5

Key Features

Modern SSH terminal with powerful capabilities

Modern Terminal

Built with the latest @xterm/xterm v5 for better performance and features

Fast & Responsive

Optimized for speed with Next.js and React for a seamless experience

Secure Connection

End-to-end encrypted SSH connections for maximum security

Interactive Terminal

Connect to your servers with our web-based SSH terminal

ssh@next-ssh

ใช้ @xterm/xterm เวอร์ชันล่าสุด (v5) แทน xterm แบบเดิม

How To Use

Simple steps to connect to your server

01

Enter Credentials

Input your server hostname, username, and password or SSH key

02

Connect

Click the connect button to establish a secure SSH connection

03

Start Working

Use the terminal just like you would in your local machine

Code Example

// Example connection code
const connection = new SSHConnection({
    host: 'your-server.com',
    username: 'user',
    port: 22,
    // Use either password or privateKey
    password: 'your-password',
    // privateKey: fs.readFileSync('/path/to/key')
});

connection.on('ready', () => {
    console.log('Connection established!');
});