Main README cleaned up
This commit is contained in:
parent
d834a662b3
commit
24dfbc118a
49
README.md
49
README.md
@ -1,50 +1,3 @@
|
||||
# openvidu-tutorials
|
||||
|
||||
## [openvidu-insecure-js](https://github.com/OpenVidu/openvidu-tutorials/tree/master/openvidu-insecure-js)
|
||||
|
||||
This is the simplest demo you can try to get started with OpenVidu. It has the minimum set of features to make a video-call.
|
||||
|
||||
<p align="center">
|
||||
<img src="https://docs.google.com/uc?id=0B61cQ4sbhmWSeVBWdkFwWEtqNjA">
|
||||
</p>
|
||||
|
||||
## [openvidu-insecure-angular](https://github.com/OpenVidu/openvidu-tutorials/tree/master/openvidu-insecure-angular)
|
||||
|
||||
Angular version of _openvidu-insecure-js_. Try it if you plan to use Angular framework for your frontend.
|
||||
|
||||
<p align="center">
|
||||
<img src="https://docs.google.com/uc?id=0B61cQ4sbhmWSbmtwcXNnXy1ZSkU">
|
||||
</p>
|
||||
|
||||
## [openvidu-js-java](https://github.com/OpenVidu/openvidu-tutorials/tree/master/openvidu-js-java)
|
||||
|
||||
A secure OpenVidu sample app with a Java backend and a SPA frontend. It makes use of _openvidu-java-client_ to get the necessary params from OpenVidu Server.
|
||||
|
||||
<p align="center">
|
||||
<img src="https://docs.google.com/uc?id=0B61cQ4sbhmWScllLNlZTLVBTaUU">
|
||||
</p>
|
||||
|
||||
## [openvidu-js-node](https://github.com/OpenVidu/openvidu-tutorials/tree/master/openvidu-js-node)
|
||||
|
||||
A secure OpenVidu sample app with a Node backend and a SPA frontend. It makes use of the _openvidu-node-client_ to get the necessary params from OpenVidu Server.
|
||||
|
||||
<p align="center">
|
||||
<img src="https://docs.google.com/uc?id=0B61cQ4sbhmWSVkNVZ2s3cmk2aHM">
|
||||
</p>
|
||||
|
||||
## [openvidu-mvc-java](https://github.com/OpenVidu/openvidu-tutorials/tree/master/openvidu-mvc-java)
|
||||
|
||||
A secure OpenVidu sample app with a Java backend and a traditional MVC frontend. With regard to the use of OpenVidu, it is identical to _openvidu-js-java_. This tutorial is intended for developers who feel more comfortable with MVC web architectures for their frontends. [Thymeleaf](http://www.thymeleaf.org/) is the template engine of choice for this tutorial.
|
||||
|
||||
<p align="center">
|
||||
<img src="https://docs.google.com/uc?id=0B61cQ4sbhmWSQzJGRDhzS1dNZFk">
|
||||
</p>
|
||||
|
||||
## [openvidu-mvc-node](https://github.com/OpenVidu/openvidu-tutorials/tree/master/openvidu-mvc-node)
|
||||
|
||||
A secure OpenVidu sample app with a Node backend and a traditional MVC frontend. With regard to the use of OpenVidu, it is identical to _openvidu-js-node_. This tutorial is intended for developers who feel more comfortable with MVC web architectures for their frontends. [Embedded JavaScript](http://www.embeddedjs.com/) is the template engine of choice for this tutorial.
|
||||
|
||||
<p align="center">
|
||||
<img src="https://docs.google.com/uc?id=0B61cQ4sbhmWSSGxqS2hYOVQzLW8">
|
||||
</p>
|
||||
|
||||
LINK: [openvidu.io/docs/tutorials/](http://openvidu.io/docs/tutorials/)
|
||||
@ -60,11 +60,11 @@ export class StreamComponent implements DoCheck {
|
||||
}
|
||||
}
|
||||
|
||||
getNicknameTag() {
|
||||
getNicknameTag() { // Gets the nickName of the user
|
||||
return JSON.parse(this.stream.connection.data).clientData;
|
||||
}
|
||||
|
||||
videoClicked() {
|
||||
videoClicked() { // Triggers event for the parent component to update its view
|
||||
this.mainVideoStream.next(this.stream);
|
||||
}
|
||||
|
||||
|
||||
@ -110,7 +110,7 @@ window.addEventListener('load', function () {
|
||||
});
|
||||
|
||||
window.onbeforeunload = function () {
|
||||
session.disconnect()
|
||||
session.disconnect();
|
||||
};
|
||||
|
||||
function generateParticipantInfo() {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user