namnguyen 3de0dcdf20 correct the comment 11 months ago
..
base 0e9e9bf76f fix decouple metadata (#1446) 11 months ago
dom d68110984c Add a full screen button to chart (#934) 1 year ago
packaging 27f4a9a892 sort scenario selector (#1318) 1 year ago
public 16e90fba5b use taipy-assets favicon (#1453) 11 months ago
src 3de0dcdf20 correct the comment 11 months ago
test-config 3bf293a8fc chat control (#1092) 1 year ago
.eslintrc.js 569f29cc06 Change year in copyright 1 year ago
.gitignore e0ba951e10 GUI - Frontend Decoupling (#446) (#613) 1 year ago
README.md e47c7bf57c fix: remove $ from bash example to allow the user to copy the commands 1 year ago
extension-index.md e47c7bf57c fix: remove $ from bash example to allow the user to copy the commands 1 year ago
jest.config.js 3bf293a8fc chat control (#1092) 1 year ago
package-lock.json cc6de86a6b rebuild package-lock (#1475) 11 months ago
package.json cc6de86a6b rebuild package-lock (#1475) 11 months ago
tsconfig.json 2fd03bcc91 frontend build location (#1026) 1 year ago
typedoc-mkdocs.json 2fd03bcc91 frontend build location (#1026) 1 year ago
webpack.config.js 8a444b6cff Feature/wsadapter (#1423) (#1391) 11 months ago

README.md

Taipy GUI front-end

This directory contains the source code of the Taipy GUI front-end bundle that includes the web app and all the elements natively available in Taipy GUI.

Prerequisites

Node.js JavaScript runtime version 18 or above must be installed on your machine.
Note that Node.js comes with the npm package manager as part of the standard installation.

Build

To build the Taipy GUI bundle, you must set your current directory to this directory and then run the following commands:

# Current directory is the directory where this README file is located:
#   [taipy-dir]/frontend/taipy-gui
#
# Install the DOM dependencies (once and for all)
cd dom
npm i
cd ..
# Install the web app dependencies
npm i --omit=optional
# Build the web app and all elements
npm run build

After these commands are successfully executed, a new directory will be created in [taipy-dir]/taipy/gui/webapp containing all the code that the Taipy GUI front-end relies on.