1
1
2
2
# Getting Started
3
3
4
- Iso is an isolated prototyping environment and page builder for Lab UI components,
5
- which lets you preview Lab components in real time using a simplified [ JSX] [ jsx ] code editor.
6
- Iso allows you to build full pages and prototypes without
7
- any development environment setup.
4
+ Iso is an isolated prototyping environment and page builder for Lab UI components.
5
+ Preview edits to Lab components in real time using a simplified [ JSX] [ jsx ] code editor.
6
+ Build, design, and publish pages without needing to setup a development environment.
8
7
9
8
When opening Iso for the first time, you'll see the ` getting-started.jsx `
10
9
example file.
@@ -14,18 +13,22 @@ Each Iso file acts like a component and can be exported as static HTML.
14
13
15
14
## User Interface
16
15
17
- The main area on the left of Iso's window is a live preview of the currently opened file.
16
+ The main area on the left of Iso's window is a live preview of the current file.
18
17
To the right is the editor pane, which shows the JSX source code by default.
18
+ <img src =' https://c8r-x0.s3.amazonaws.com/code.jpg ' />
19
19
20
20
Clicking on the props button in the upper right
21
21
shows the YAML-based props editor,
22
22
where page-level props can be defined.
23
+ <img src =' https://c8r-x0.s3.amazonaws.com/props.jpg ' />
23
24
24
25
Clicking on the folder icon shows the current folder and allows you to open Iso-compatible files.
26
+ <img src =' https://c8r-x0.s3.amazonaws.com/folder.jpg ' />
25
27
26
28
The Lab button opens the Compositor Lab app when the current folder includes a Lab project.
27
29
28
- The HTTP button starts a local Preview server and opens the current page in the default browser.
30
+ The HTTP button starts a local Preview server on port 8000 and opens the current page in the default browser
31
+ <img src =' https://c8r-x0.s3.amazonaws.com/http.jpg ' />
29
32
30
33
The title bar includes the path and file name for the currently opened file. Clicking on any part of the path will navigate to that folder.
31
34
@@ -105,6 +108,18 @@ Changes made in the Lab app will automatically be applied to an open Iso file.
105
108
Lab components with the same name as an Iso primitive will override the defaults.
106
109
This is useful for custom Heading and Link styles.
107
110
111
+ ### Previewing on External Devices
112
+
113
+ To preview this page from an external device, first navigate to System Preferences > Network to find your IP address.
114
+
115
+ <img src =' https://c8r-x0.s3.amazonaws.com/network.png ' />
116
+
117
+ On an external device enter in the IP address followed by :8000
118
+ ```
119
+ http://169.254.163.132:8000
120
+ ```
121
+ The external device must be on the same wifi network as your computer.
122
+
108
123
109
124
[ jsx ] : https://reactjs.org/docs/introducing-jsx.html
110
125
[ yaml ] : http://yaml.org
0 commit comments