Initialize
The easiest way to start developing a connector is by using the Connector CLI.
integration-cli init --name pokemon
This will create a new pokemon folder in which you'll find;
- A newly configured Typescript project
- A web server, powered by the Integration SDK
- A
.unito.jsonfile, to host your connector's configuration npxfor fast developmenteslintandprettierfor consistency
Jump into this new folder and explore the available commands;
cd pokemon && npm run
Confirm everything is working by inspecting the pr0cess tab of the Debugger.
integration-cli dev
You should see a server running on the port 9200.

You can press d to go to the debugger window and then press s to step through the root of your connector!

Voilà! You have a brand new connector up and running and you are ready to add items pokémons to it!