An open API service indexing awesome lists of open source software.

https://github.com/thisdot/100-ms-vue

Showcase of 100ms using Vue as the framework of choice
https://github.com/thisdot/100-ms-vue

100ms a11y tensorflowjs vuejs

Last synced: about 1 year ago
JSON representation

Showcase of 100ms using Vue as the framework of choice

Awesome Lists containing this project

README

          

# 100-ms-vue

This is a starter pack of [100ms](https://www.100ms.live/) based on [svelte-100ms](https://github.com/thisdot/svelte-100ms/tree/features).

## Project setup

```bash
#usng npm
npm install

#using yarn
yarn install
```

### Compiles and hot-reloads for development

```bash

#using npm
npm run serve

#using yarn
yarn serve
```

### Compiles and minifies for production

```bash

#using npm
npm run build

#using yarn
yarn build
```

### Lints and fixes files
```bash
#using npm
npm run lint

#using yarn
yarn lint
```

## Project structure

- **src/store**: _This handles the global state of the application_
- **src/utils**: _This contains re-useable functions_
- **src/components/icons**: _This is where icon components are_
- **src/components/AutoPlayError**: _Notifies the user of permission to access the audio_
- **src/components/ConnectionQuality**: _Shows the strength of the network_
- **src/components/DeviceSettings**: _Allows selection of audio, video and speaker option available on your system_
- **src/components/GalleryView**: _Displays all connected users_
- **src/components/JoinForm**: _This is where users initiate a connection to join_
- **src/components/ScreenShare**: _Show the screen the user is sharing_
- **src/components/ShareLink**: _Allows the user to copy a shareable link_
- **src/components/UChat**: _This is where sending and receiving messages happens_
- **src/components/UConference**: _This is the container for both GalleryView and ShareScreen_
- **src/components/UFooter**: _This contains the buttons to toggle audio, and video, and buttons to share screen and change settings_
- **src/components/UHeader**: _Here you have the leave room button, ShareLink and also the GitHub Icon used as a link to the repo_
- **src/components/UNotification**: _Handle notifications from hsmNotification which could be an error, offline users, incoming messages e.t.c_
- **src/components/UPeer**: _Handles the connected user, shows a placeholder if the user video is off, shows the name of the user_
- **src/components/UserAvartar**: _Used as a placeholder when the user video is off_
- **src/components/UToast**: _A custom component for toast should the message of the toast has an HTML tag_
- **src/components/UVideo**: _Show a video of the connected user and also the alphabet based on the hand sign overlays the video_

### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).