tree: 6ec2563c1362f7a0fd2f17caee2d181716bed3f5 [path history] [tgz]
  1. meta/
  2. src/
  3. BUILD.gn
  4. README.md
examples/components/basic/README.md

Basic Components

This directory contains simple examples of components in Component Framework (Components v2).

Building

If these components are not present in your build, they can be added by appending --with //examples to your fx set command. For example:

$ fx set core.x64 --with //examples --with //examples:tests
$ fx build

(Disclaimer: if these build rules become out-of-date, please check the Build documentation and update this README!)

Running

These examples are all stored in a package named components-basic-example.

ffx can be used to run the hello_world example:

$ ffx component run fuchsia-pkg://fuchsia.com/components-basic-example#meta/hello-world.cm

When the above command is run, the following output can be seen in fx log:

[682199.986470][5056597][5056599][hello_world] INFO: Hippo: Hello World!

To run a different example, replace hello-world with the name of a different manifest in meta/.

Make sure you have fx serve running in another terminal so your component can be installed!

Testing

To run one of the test components defined here, use fx test with the package name:

$ fx test hello-world-tests