Triplex Standalone

Use Triplex by itself on the operating system of your choice.

Triplex Standalone is the desktop version of Triplex for macOS, Windows, and Linux. As a desktop application it's feature rich and easy to get started for everyone.

Installation

  1. Visit the Download page
  2. Download the inferred installer for your operating system; or
  3. Alternatively select a specific installer

For operating system specific steps see:

Opening Components

Using the Open Component action

Find the Open Component action at the top left area of the user interface and click it to be presented a list of components to open.

Excluding files

By default all React components can be opened by Triplex. When wanting to scope the files that can be opened you can create a configuration file and populate the "files" field.

For example the following configuration marks all tsx files inside the components folder can be opened, anything else is excluded.

.triplex/config.json
{
  "files": ["../src/components/**/*.tsx"]
}

For more information see config.json Options > files.

Common Questions

How do I edit my source code?

Currently Triplex Standalone doesn't support editing source code directly. You'll need to use your favorite code editor to make changes to your project. Alternatively, you can use the Triplex for VS Code right inside Visual Studio Code.

Why can't I open one of my components?

Only components that are exported can be opened in Triplex. If you're trying to open a component that isn't exported you'll need to export it first.

-function Component(): JSX.Element;
+export function Component(): JSX.Element;

Next Steps

Learn how to start a project and work with Triplex.

Was this page helpful?