···1616 { url: "orchestrator/storage/", title: "Storage" },
1717];
18181919-const storages = [];
1919+const storages = [
2020+ { url: "storage/output/indexed-db", title: "Output / IndexedDB" },
2121+ { url: "storage/output/native-fs", title: "Output / Native File System" },
2222+];
2323+2424+const processors = [];
20252126const themes = [{ url: "themes/pilot/", title: "Pilot" }];
2227---
···56615762 <section>
5863 <h2>Applets</h2>
6464+6565+ <h3>Configurators</h3>
6666+6767+ <p>
6868+ <em
6969+ >Applets that serve as an intermediate in order to make a particular kind of applet
7070+ configurable. In other words, these allow for an applet to be swapped out with another
7171+ that takes the same actions and data output.</em
7272+ >
7373+ </p>
7474+7575+ <ul>
7676+ {
7777+ configurators.map((item: any) => (
7878+ <li>
7979+ <a href={item.url}>{item.title}</a>
8080+ </li>
8181+ ))
8282+ }
8383+ </ul>
59846085 <h3>Engines</h3>
6186···96121 }
97122 </ul>
981239999- <h3>Storages</h3>
124124+ <h3>Processors</h3>
100125101126 <p>
102127 <em
103103- >Input and output managers of the system. Where input is audio files or streams, and
104104- output is derived data such as a music playlist.</em
128128+ >These applets interact with the bytes provided by the data storage applets, or provide
129129+ to. This processed data can then be passed on to the UI layer and engine applets.</em
105130 >
106131 </p>
107132108133 <ul>
109134 {
110110- storages.map((item: any) => (
135135+ processors.map((item: any) => (
111136 <li>
112137 <a href={item.url}>{item.title}</a>
113138 </li>
···115140 }
116141 </ul>
117142118118- <h3>Processors</h3>
119119-120120- <p>
121121- <em
122122- >These applets interact with the bytes provided by the data storage applets, or provide
123123- to. This processed data can then be passed on to the UI layer and engine applets.</em
124124- >
125125- </p>
126126-127127- <h3>Configurators</h3>
143143+ <h3>Storages</h3>
128144129145 <p>
130146 <em
131131- >Applets that serve as an intermediate in order to make a particular kind of applet
132132- configurable. In other words, these allow for an applet to be swapped out with another
133133- that takes the same actions and data output.</em
147147+ >Input and output managers of the system. Where input is audio files or streams, and
148148+ output is derived data such as a music playlist.</em
134149 >
135150 </p>
136151137152 <ul>
138153 {
139139- configurators.map((item: any) => (
154154+ storages.map((item: any) => (
140155 <li>
141156 <a href={item.url}>{item.title}</a>
142157 </li>