Build a Basic Extension App
Create Project
mkdir adk-example-basic && cd $_
npm init -yInstall Dependencies
npm install @symphony-ui/adk
npm install --save-dev @symphony-ui/adk-webpack webpack-cli webpack-dev-serverAdd Script Commands
"scripts": {
"start": "webpack-dev-server --mode=development",
"build": "webpack --mode=production"
},Add Webpack Configuration
Add Application Manifest
Build the App
Start the App
Load the App in Symphony Messaging
Test the App

Next Steps
Build an Extension App with App ViewsBuild an Extension App with Message RenderersLast updated
Was this helpful?