Appearance
Getting started 
The Forge SDK provides developers with all the components they need to create Forge apps. To start building on the Forge platform, install our SDK
bash
npm i @forgeapp/sdkbash
pip install forgeapp-sdkThen, create your first Forge app in just a few lines of code.
ts
import { Forge } from '@forgeapp/sdk'
import { refundOrder } from '../api/order'
const forge = new Forge({
  apiKey: '<YOUR_API_KEY>',
  endpoint: 'wss://<FORGE_SERVER_URL>/websocket',
  actions: {
    refundCustomerOrder: async () => {
      const orderID = await io.input.text('Order ID')
      await refundOrder(orderID)
      return 'Success!'
    },
  },
})
forge.listen()python
from forgeapp_sdk import Forge
from api import refund_order
🎉 That's it! Run your service and you'll be able to view your new Forge app in your Forge dashboard. When the user submits the action, the Forge server will call your function with the input data.
