Skip to content

Commit 487b693

Browse files
authored
cleanup the readme and remove alpha docs (#640)
1 parent 3621443 commit 487b693

25 files changed

+38
-726
lines changed

README.md

+34-107
Original file line numberDiff line numberDiff line change
@@ -16,129 +16,40 @@
1616

1717
![LiveKit Components Preview](./.github/assets/livekit-meet.jpg)
1818

19-
## About LiveKit Components
20-
21-
Create your [LiveKit](https://livekit.io) WebRTC experience without worrying about state. LiveKit Components give you a declarative way to build your real-time LiveKit audio/video frontend with React.
22-
23-
Every use case is different and apps in the real world are individual and unique. We don't pretend to have the perfect solution that fits all use cases. Instead, we've taken an approach where we give you reasonable defaults, without taking away full control over each component if you want it.
24-
25-
### 🤩 LiveKit Components handle all state for you
26-
27-
You don't have to worry about participant or room events to update the state of your application. All components handle state management for you, and by using React contexts, you don't have to route properties through your component tree.
28-
29-
### 🛠️ Carefully crafted set of components
30-
31-
We offer all the necessary building blocks to build a live video or audio app in no time.
32-
33-
### 🚀 Beautiful and sane defaults
34-
35-
We put a lot of effort into creating components that work and look great right out of the gate. Get started quickly by using the defaults of your components or overwrite them by simply adding children.
36-
3719
```tsx
38-
//1️⃣ Use the components defaults to render a video conference app
39-
<LiveKitRoom token="my-token" serverUrl="wss://my-livekit-server" connect={true} >
20+
<LiveKitRoom token="my-token" serverUrl="wss://my-livekit-server" connect={true}>
4021
<VideoConference />
4122
</LiveKitRoom>
42-
43-
// 2️⃣ or overwrite the defaults with your custom component tree.
44-
<LiveKitRoom >
45-
<ParticipantLoop>
46-
{/* */}
47-
</ParticipantLoop>
48-
</LiveKitRoom>
49-
50-
```
51-
52-
### 🎨 Style them the way you want
53-
54-
Because most of the components are merely wrappers around standard HTML-Elements you can overwrite the basic component style how ever you want.
55-
56-
On top of that we provide a handful of pre-defined css variables to easily theme LiveKit Components to your needs.
57-
58-
To add styling from our @livekit/components-styles package:
59-
60-
Import all styles including the default theme
61-
62-
```ts
63-
import '@livekit/components-styles';
64-
```
65-
66-
And add a theme data attribute to the `<LiveKitRoom/>` or any HTML container, to gain access to default LiveKit styles.
67-
68-
```html
69-
<div data-lk-theme="default"...
70-
```
71-
72-
### 📈 Room to grow: create your own components
73-
74-
The component we offer does not fit your requirements? We have the solution for you! Each component comes with its own React hook that allows you to create your own component with minimal boilerplate. Of course, you can also combine your own component with our pre-built components. It's common to start with our components to quickly sketch out a concept, and then replace some of them with your own components to build something we could never have imagined.
75-
76-
## Get started
77-
78-
The best way to get started is to use the [`@livekit/components-react`](/packages/react/) package and install it.
79-
80-
```bash
81-
yarn add @livekit/components-react livekit-client
8223
```
8324

84-
or
85-
86-
```bash
87-
npm install @livekit/components-react livekit-client
88-
```
25+
## Docs
8926

90-
Creating a full fledged video conference is as easy as
91-
92-
```tsx
93-
import { LiveKitRoom, VideoConference } from '@livekit/components-react';
94-
95-
export function App() {
96-
return (
97-
<LiveKitRoom token="<livekit-token>" serverUrl="<url-to-livekit-server>" connect={true}>
98-
<VideoConference />
99-
</LiveKitRoom>
100-
);
101-
}
102-
```
27+
For more information checkout the [LiveKit Components Docs](https://docs.livekit.io/reference/components/react/)
10328

10429
## Examples
10530

106-
There are some basic example on how to use and customize LiveKit Components in the [nextjs example folder](./examples/nextjs/)
107-
108-
In order to set the examples up locally follow the [development guide](#development-setup).
109-
110-
We also have a fully featured video conferencing application built on top of LiveKit Components [here](https://github.com/livekit/meet) that powers https://meet.livekit.io.
111-
112-
## FAQ
113-
114-
### Why is there a @livekit/components-core package?
115-
116-
By abstracting most of the state handling logic into a common core we wanted to make sure that other framework implementations can be created with minimal code duplication. We chose observables as the main data structure for this core as its concepts translate really well to for example React's hooks, solid's signals, Svelte's stores, Vue's composables, and angular loves observables out of the box.
117-
118-
### Did you consider using Custom Elements?
119-
120-
Yes, we did consider building LK Components with custom elements (web components). We ultimately decided against it in order to give users the option to develop within the constraints of their chosen framework with all its specific concepts (e.g. in the case of react hooks, context etc.). That said the road towards supporting custom elements isn't entirely closed off. If the adoption of custom elements gains traction we can imagine providing a framework implementation that additionally compiles to custom elements (e.g. solid or svelte).
31+
There are some basic examples of how to use and customize LiveKit components in this mono repo. They are located in the nextjs examples folder [`/examples/nextjs`](./examples/nextjs/). In order to set the examples up locally follow the [Development Setup](#development-setup).
12132

122-
### Will there be an implementation for my favorite framework?
123-
124-
The highest priority is currently to get the core and react packages to a stable version that people love to work with. Once this is done we will decide on what other frameworks we might to support officially. If you want to develop an implementation for your favorite framework based on the core package we'd love to talk to you about it!
33+
We also have a fully featured video conferencing application built on top of LiveKit Components. Start a video conference at [meet.livekit.io](https://meet.livekit.io) and take a look at the implementation in the [livekit-examples/meet](https://github.com/livekit-examples/meet) repo.
12534

12635
## Development Setup
12736

37+
If you are interested in contributing to the project or running the examples that are part of this mono-repository, then you must first set up your development environment.
38+
12839
### Setup Monorepo
12940

13041
This repo consists of multiple packages that partly build on top of each other.
13142
It relies on yarn workspaces and [Turborepo](https://turbo.build/repo/docs) (which gets installed automatically).
13243

133-
On the root level:
44+
Clone the repo and run `yarn install` the root level:
13445

135-
```bash
46+
```shell
13647
yarn install
13748
```
13849

13950
In order to link up initial dependencies and check whether everything has installed correctly run
14051

141-
```bash
52+
```shell
14253
yarn build
14354
```
14455

@@ -147,25 +58,41 @@ This will build all the packages in `/packages` and the examples in `/examples`
14758
After that you can use a more granular command to only rebuild the packages you are working on.
14859
E.g. to test and automatically rebuild package dependencies for the nextjs example, run:
14960

150-
```bash
61+
```shell
15162
yarn dev:next
15263
```
15364

154-
> **Note** for the examples to work you'll need to make sure to copy the the contents of .env.example in the specific example folder to a newly created .env.local file and adjust the values accordingly to your livekit server setup.
65+
> **Note**
66+
> For the examples to work you'll need to make sure to copy the the contents of .env.example in the specific example folder to a newly created .env.local file and adjust the values accordingly to your livekit server setup.
15567
156-
#### Setup Husky pre-push checks
68+
## FAQ
69+
70+
<details>
71+
<summary>
72+
Why is there a `@livekit/components-core` package?
73+
</summary>
74+
By abstracting most of the state handling logic into a common core we wanted to make sure that other framework implementations can be created with minimal code duplication. We chose observables as the main data structure for this core as its concepts translate really well to for example React's hooks, solid's signals, Svelte's stores, Vue's composables, and angular loves observables out of the box.
75+
</details>
15776

158-
To get immediate feedback on whether CI will pass, you can set Husky to run check whenever you push to origin.
159-
Setting it up is as simple as running `yarn prepare`.
77+
<details>
78+
<summary>
79+
Did you consider using Custom Elements?
80+
</summary>
81+
Yes, we did consider building LK Components with custom elements (web components). We ultimately decided against it in order to give users the option to develop within the constraints of their chosen framework with all its specific concepts (e.g. in the case of react hooks, context etc.). That said the road towards supporting custom elements isn't entirely closed off. If the adoption of custom elements gains traction we can imagine providing a framework implementation that additionally compiles to custom elements (e.g. solid or svelte).
82+
</details>
83+
84+
<details>
85+
<summary>
86+
Will there be an implementation for my favorite framework?
87+
</summary>
88+
The highest priority is currently to get the core and react packages to a stable version that people love to work with. Once this is done we will decide on what other frameworks we might to support officially. If you want to develop an implementation for your favorite framework based on the core package we'd love to talk to you about it!
89+
</details>
16090

16191
<!--NAV_START-->
16292

16393
## Monorepo Navigation
16494

16595
- [Home 👈](/README.md)
166-
- **Docs**
167-
- [Docs](/docs/alpha-docs/README.md)
168-
- [Storybook](/docs/storybook/README.md)
16996
- **Framework Implementations**:
17097
- [React](/packages/react/README.md)
17198
- **Examples**

docs/alpha-docs/CHANGELOG.md

-21
This file was deleted.

docs/alpha-docs/README.md

+4-31
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,6 @@
1-
# LiveKit Components **Docs**
1+
# LiveKit Components **Docs** at [docs.livekit.io](https://docs.livekit.io)
22

3-
Documentation and Guides to get you started with LiveKit components for React.
3+
> **Info**
4+
> The official documentation is now live at: [https://docs.livekit.io](https://docs.livekit.io)
45
5-
> **Warning** This is an early, preliminary and under construction version of the LiveKit Components documentation. The shiny official docs website will be available upon release.
6-
7-
<!--NAV_START-->
8-
9-
## Monorepo Navigation
10-
11-
- [Home](../../README.md)
12-
- **Docs**
13-
- [Docs 👈](../../docs/alpha-docs/README.md)
14-
- [Storybook](../../docs/storybook/README.md)
15-
- **Framework Implementations**:
16-
- [React](../../packages/react/README.md)
17-
- **Examples**
18-
- [Next.js](../../examples/nextjs/README.md)
19-
- **Internal Packages**
20-
- [Core](../../packages/core/README.md)
21-
- [Styles](../../packages/styles/README.md)
22-
23-
<!--NAV_END-->
24-
25-
## Docs Structure
26-
27-
- [About LiveKit Components](guides/about-livekit-components.md): What is the goal of LiveKit Components and how does it improve your development experience.
28-
- [Getting Started](guides/getting-started.md): Learn how to add LiveKit Components to your React project and build your first VideoConference app in minutes.
29-
- [LiveKit Components fundamentals](guides/livekit-component-fundamentals.md): Learn the basics of how to nest, loop and combine components to build a LiveKit app.
30-
- [Style LiveKit Components](guides/style-livekit-components.md): Learn how to modify the look and style of LiveKit Components.
31-
- [Custom components](guides/custom-components.md): Learn how to create your own component using the included React hooks.
32-
- [All LiveKit Components](components): All LiveKit Components with detail pages for every component.
33-
- [All LiveKit Component Hooks](hooks): All React hooks with detail pages for every hook.
6+
This **was** the temporary home for the LiveKit Component documentation, but as you can see from all the links pointing to the new location, it has moved to https://docs.livekit.io.

docs/alpha-docs/code-snippets/custom-components/example-add-participants.tsx

-20
This file was deleted.

docs/alpha-docs/code-snippets/custom-components/example-overwrite-defaults.tsx

-11
This file was deleted.

docs/alpha-docs/code-snippets/custom-components/example-setup.tsx

-9
This file was deleted.

docs/alpha-docs/code-snippets/getting-started/example-first-lk-room.tsx

-13
This file was deleted.

docs/alpha-docs/code-snippets/getting-started/example-setup.tsx

-5
This file was deleted.

docs/alpha-docs/components/README.md

-5
This file was deleted.
Binary file not shown.
Binary file not shown.

docs/alpha-docs/guides/about-livekit-components.md

-40
This file was deleted.

0 commit comments

Comments
 (0)