This directory contains the Web UI for netsim.
The netsimd web server must be up and running.
Firstly, you must enter the ui directory and run npm install.
cd $REPO/tools/netsim/ui npm install
Command for compiling and building web UI:
npm run build
Command for translating netsim's model.proto into model.ts:
npm run tsproto
Command for running local web development server:
npm start
Local web server will be served in http://localhost:8000/web/
build compiles TypeScript into JavaScript and bundle to distribution with rolluptsproto translates netsim's model.proto into model.tsstart runs your app for development, reloading on file changespackage.json contains all npm packages and scripts for web developmentrollup.config.mjs applies import mappings to CDNs and bundles to distributiontsconfig.json has configurations for typescript compiling.[Hyun Jae Moon] hyunjaemoon@google.com
[Bill Schilit] schilit@google.com