Skip to content

Latest commit

 

History

History
50 lines (32 loc) · 717 Bytes

development.md

File metadata and controls

50 lines (32 loc) · 717 Bytes

Development

Prerequisites

  • Docker - for building WASM version of h264bitstream
  • Node.js, npm - for building Frontend Application

Dependencies

Fetch h264bitstream as a submodule:

git submodule update --init --recursive

Fetch NPM dependencies:

npm install

Build

Build WASM:

./build.sh

Build Frontend Application:

npm run build
npm run build:watch

Develop

Serve dist/ folder using any web-server and open index.html in browser.

Test

npm run test
npm run test:watch