# Install OC
[sudo] npm i -g oc
# Create a folder of components
mkdir components && cd components
# Create your first component
oc init my-component [jade]
# Run the OC dev registry
oc dev . 3030
# Now you can make changes and observe the result
# http://localhost:3030
# http://localhost:3030/my-component
Yes