Skip to main content

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.json file, to host your connector's configuration
  • npx for fast development
  • eslint and prettier for 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.

image

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

image

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