ACK Club

Getting Started

Start building network simulations with ACK Club by setting up your environment and running your first experiment.

🛠 Setup Your Development Environment

1. Install Dependencies

ACK Club requires a modern JavaScript runtime and simulation dependencies:

npm install -g ackclub-cli
              

2. Create a Project

Initialize a new ACK Club project directory with a basic simulation template:

ackclub init my-sim
cd my-sim
              

3. Configure Parameters

Set simulation parameters in the config file for network topology and runtime:

{
  "topology": "star",
  "nodes": 4,
  "duration": "600s"
}
              

4. Run Simulation

Start your first simulation and monitor results in real-time:

ackclub run
              

📈 Visualization Walkthrough

Network Topology Editor

Launch the visual interface to design and modify your network configuration.

Topology Editor Screenshot

Live Metrics Dashboard

Monitor simulation statistics in real-time with interactive charts and metrics.

Metrics Dashboard Screenshot

Need Help?

Found issues or unclear instructions? Check our community resources or submit a contribution.

➡️ Next Steps

Create Your First Project

Follow the interactive setup to design a custom network simulation using ACK Club's API.

🔧 Setup →

Explore API Concepts

Learn how to programmatically control simulations and analyze network behavior using RESTful endpoints.

🔌 API Docs →