/VideoStreamer

Demonstration of a video streaming server using Nodejs.

Primary LanguageJavaScriptMIT LicenseMIT

VideoStreamer

This is a demonstration of video streaming using a Nodejs server.

Getting Started

To run this demonstration on a testing- or development environment, follow these steps.

  1. Download and install Node.js
  2. Install typescript npm module globally.
  3. Download or clone this repository.
  4. Install node dependencies, compile typescript and start server.
# Step 2
npm install -g typescript

# Step 3
git clone https://github.com/danielakl/VideoStreamer.git
cd VideoStreamer

# Step 4
npm install     // Install nodejs dependencies.
npm run tsc     // Compile typescript.
npm start       // Start server

Built With

Authors

  • Daniel Aune Klock - Initial work - danielakl

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License - see the LICENSE.md file for details.

Acknowledgments

This project is heavily based off Video stream with Node.js and HTML5.
Express generator was used to generate the initial project structure.