HTML App Example
In this guide, we'll walk you through from scratch the steps to integrate Jupiter Terminal into a HTML application.
Prerequisites
Before you begin, make sure you have the following installed on your system.
Node.js and npm: Download and install from nodejs.org http-server: Download and install http-server from npm
Step 1: Create a New HTML Project
Head to your preferred directory and create a new folder for your project:
mkdir terminal-demo
cd terminal-demo
touch index.html
Step 2: Add the Terminal Script
Add the Terminal script to your project:
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Jupiter Terminal Demo</title>
    <script src="https://terminal.jup.ag/main-v4.js" data-preload defer></script>
    <style>
        .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>Jupiter Terminal Demo</h1>
        <div id="jupiter-terminal"></div>
    </div>
    <script>
        window.onload = function() {
            window.Jupiter.init({
                displayMode: "widget",
                integratedTargetId: "jupiter-terminal",
            });
        };
    </script>
</body>
</html>
Step 3: Run the Project
Run the project using http-server:
http-server
There you have it! You've successfully integrated Jupiter Terminal into your HTML application.
- Please test the swap functionality and check the transaction.
- If you require more customizations, check out the Terminal Playground or the Customization documentation.
- If you have any questions or issues, please refer to the FAQ or contact us on Discord.