- Notifications
You must be signed in to change notification settings - Fork4
Develop custom connectors for Bizagi Studio blazingly fast. With bz-cli you are now able to develop without the connector editor from Bizagi. 🚀
License
NotificationsYou must be signed in to change notification settings
bz-cli/bz-cli
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Develop custom connectors for Bizagi Studio blazingly fast. With bz-cli you are now able to develop wihtout the connector editor developed by Bizagi.
npm install bz-cli
bz new <appName>
This will generate a new project with the following configuration:
- Babel for transpilation.
- jest for testing.
- bz-define to create the bizagi custom connector definition.
- bz-zip to bundle the connector to a .bizc file.
- Write your custom connector's actions in the
src
folder and transpile them withnpm run dev
and put them inbuild/actions
for you. - Write your tests in the
__tests__
folder. Run them withnpm test
ornpm t
. - Build your connector with
npm run build
. AConnector.bizc
file will be created as a result.
To create a connector aciton use
bz generate-action <actionName>
The action file will be kebab-cased and located in the src folder of your project.