Component Development Environments
Component Development Environment (or Environment in short) standardize component development and maintenance. It takes direct inspiration from react-scripts
in how they simplify dev-experience when building components.
#
Benefits of Environments- Composing all your tools and preferred configurations to a single module to streamline your development.
- Share Environments between teams and projects and use semantic versioning to communicate config changes.
- Maintain a set of environments for different use cases, use them on multiple components in the same workspace simultaneously.
- Extend and customize environments by adding new tools and capabilities to your workflow.
#
Pre-built EnvironmentsBit has a set of ready-made Environments you can use for building your components.
- React - for building React components and hooks
- React Native - for building React Native components and hooks
- Node - for building components as node modules; relevant for any backend, middleware and even framework-less components in the browser
- Html - for building framework-less components which interact natively with the DOM. AKA VanillaJs UI components (if your component does not have any UI interaction consider using the Node environment instead)
- Aspect - for building new Bit Aspects
These environments offer Bit's support for different frameworks. You can use either of them, customize them for your needs or even implement a new environment to add support for additional frameworks.
#
Configure Environment for ComponentsEach component must have an environment configured, this way Bit "knows" how to build, test, lint and document components.
The default environment Bit sets for all components is Node. We can override it when using the teambit.workspace/variants
config in workspace.jsonc
file. This is how we can determine different configurations for components according to their location in the workspace.
{ "teambit.workspace/variants": { "movies/pages": { "teambit.react/react": {} }, "movies/models": { "teambit.harmony/node": {} } }}
#
See configured environmentsThere are several ways you can see which environment is configured for your component.
bit env
- prints a simple table with all components in workspace and their environmentsbit show <component>
- prints all information on component including environmentbit start
- browse the component tree to see component's environment
#
Customizing environmentsThere's no "single-config to rule them all" for component lifecycle, this is why we made environments composable. You can take any environment and use it as a base for another, and in the process either change any of its default configuration (for compilation or testing, for example) or even compose with new features.
#
Extend an environmentThe first step of creating an environment is creating a new component with the specific extension template. Each of the pre-built environments contains a template for creating extension. You can also head over to each environment's documentation page to learn more about the APIs it allows you to use for customization.
Instructions on extending Environments are in each environment documentation.
#
Use your environmentIf you extended an environment with your own configuration you can apply it as the Component Development Environment for your components. This is done in the same way as you would set any of Bit's built-in environments.
{ "teambit.workspace/variants": { "movies/pages": { "acme/my-react-extension": {} }, "movies/models": { "acme/my-node-extension": {} } }}
Note: when using your custom environment outside the workspace it was developed in, you must add a version number, e.g.:
{ "teambit.workspace/variants": { "movies/pages": { "acme/my-react-extension@1.2.2": {} }, }}
You don't need to install or import the environment, bit will do that for you in the background.
#
Publish your extensionAn extension works just like any other component in Bit. You can version it with bit tag
and export to a Bit Scope with the bit export
command.
Once you have an extension exported to a remote Scope you can configure it in any workspace.jsonc
as if its part of Bit's built-in environments. Reusing extensions like components can help you standardize component development across your organization.