Extending Bit
Bit's extension system allows you to add custom actions during a component's lifecycle, and invoke custom commands on a bit component, in its isolated environment.
Why?
During our work on bit, we've realized that many actions performed on a component are not (or should not be) an inherent part of Bit's code. Those include actions integrating with external tools, such as packing and publishing a component to npm, or parsing its documentation, as well as actions that are just user-specific.
What is an Extension?
An Extension is simply a code component that can perform actions on isolated components (during the component's lifecycle, or by invoking it as a command). It can add additional functionality, such as packing a component.
How to use an extension?
If you want to learn how to use and consume extensions, head over here.
How does it work?
Now that we know what is an extension, let's dive deeper...
Extension as a command
Some extensions are actually custom Bit commands. Those are useful when there's a need to run a command on a component, in an isolated environment.
For example, Let's say we want to pack a component as an npm package - We can create a pack
extension that defines a Bit command, and then use it as follows:
bit pack foo/bar
Want to develop your own custom Bit command? You can learn all about it here.
Hooks
An extension can also register an action to a hook, and thus the action will run whenever the hook is triggered. When multiple actions are registered to the same hook, they will run in parallel when that hook is triggered. Some hooks are registered by bit, and more hooks can be registered by extensions, and subsequently used by other extensions.
Want to develop an extension that registers to hooks? You can learn all about it here.
Bit's core hooks
Bit registers hooks related to the component's lifecycle. Any extension can register to those hooks. Some examples for core hooks: pre-tag, post-tag, pre-import, post-import, pre-export, post-export.
Registration lifecycle
As you can probably guess, there's a complex system of hooks and triggers that Bit needs to handle under the veil.
Before every Bit command, Bit runs over the non-disabled extensions listed in Bit's configuration, and does the following actions, by that order:
- init function is run and results are collected.
- All new hooks are registered.
- All new commands are registered.
- Actions that have been registered to hooks (both core hooks and custom hooks) are registered on Bit.
Extensions vs. Environments
An Environment is a special kind of extension - a compiler or a tester. It is imported, consumed and developed in a different fashion.
Developing your own extensions
It's easy and straightforward to develop your own extensions.
Developing a compiler
You can develop compilers that will build components using your specific build tools and configuration. You can learn all about it here.
Developing a tester
You can develop testers that will test components using your specific testing tools and configuration. You can learn all about it here.
Developing a custom extension
You can develop custom extensions for various purposes, and take advantage of the hooks and commands mechanisms that were previously introduced. You can learn all about it here.