tdlight/example/web
2020-11-28 17:00:17 +03:00
..
tdweb Update version to 1.7.0. 2020-11-28 17:00:17 +03:00
.gitignore
build-openssl.sh Fix example/tdweb build 2019-12-23 21:33:03 +04:00
build-tdlib.sh Using emcmake in build-tdlib.sh 2020-07-26 15:13:09 +03:00
build-tdweb.sh
copy-tdlib.sh
README.md Update recommended Emscripten version. 2020-10-12 01:10:55 +03:00

TDLib Web example

This is an example of building TDLib for browsers using Emscripten. These scripts build TDLib and create an NPM package tdweb. You need a Unix shell with sed, tar and wget utilities to run the provided scripts.

Building tdweb NPM package

  • Install the 2.0.6 emsdk, which is known to work. Do not use the system-provided emscripten package, because it contains a too old emsdk version.
  • Install all TDLib build dependencies as described in Building.
  • Run source ./emsdk_env.sh from emsdk directory to set up the correct build environment.
  • On macOS, install the coreutils Homebrew package and replace realpath in scripts with grealpath:
brew install coreutils
sed -i.bak 's/[(]realpath/(grealpath/g' build-tdlib.sh
  • Run build scripts in the following order:
cd <path to TDLib sources>/example/web
./build-openssl.sh
./build-tdlib.sh
./copy-tdlib.sh
./build-tdweb.sh
  • The built package is now located in the tdweb directory.

Using tdweb NPM package

See tdweb or README.md for package documentation.