Get Started
Start Server Modules
This project includes multiple server-side modules implemented in different languages. Follow the instructions in each module’s README.md
to install dependencies and start services.
modules
├── Analyzer # Python-based protocol stack analysis module
├── Guarder # Go-based security policy module
├── Locator # Python-based network path mapping module
└── Tracer # Python-based traffic monitoring and fine-grained tracing module
Start Frontend Service
The frontend is built on Node.js . Please ensure Node.js (version ≥ 16) is installed.
Install Dependencies
Run the following command in the project root:
npm install
Note
For users in mainland China, set npm mirror to speed up installation:
npm config set registry http://registry.npmmirror.com
Start Preview Server
npm run preview
The application runs locally by default on port 4173
.
Access the App
Open your browser and visit:
http://localhost:4173/
Tip
To run in development mode with hot reloading, use the following command:
npm run dev
Tip
To build the project for production, use the following command:
npm run build
Last updated on