# Essential Tools Overview

#### Core Development Tools

1. [**æproject**](/developer-documentation/aeproject.md) **CLI**

* Project scaffolding
* Smart contract compilation
* Test framework
* Local node management

```bash
bashCopy# Create a new project
aeproject init

# Start a local node
aeproject node

# Deploy a contract
aeproject deploy
```

2. [**Javascript SDK** ](/developer-documentation/aepp-sdk-js.md)**(aepp-sdk)**

* JavaScript library for interacting with æternity blockchain
* Contract deployment and interaction
* Account management
* Transaction handling

3. [**FATE**](/developer-documentation/protocol/contracts/fate.md) **(Fast Æternity Transaction Engine)**

* Virtual machine for smart contract execution
* Provides type safety and efficiency
* Native support for blockchain primitives

#### Node

* [Mainnet](https://mainnet.aeternity.io/v3/status) - Access to the `status` endpoint
* [Testnet](https://testnet.aeternity.io/v3/status) - Access to the `status` endpoint
* [Swagger-UI](https://api-docs.aeternity.io/) - Explore and interact with the Node API

#### Middleware

* [Mainnet](https://mainnet.aeternity.io/mdw/v2/status) - Access to the `status` endpoint
* [Testnet](https://testnet.aeternity.io/mdw/v2/status) - Access to the `status` endpoint

#### Explorers

* [Mainnet](https://explorer.aeternity.io/) - Explore the history of æternity mainnet
* [Testnet](https://explorer.testnet.aeternity.io/) - Explore the history of æternity testnet

#### Other Services

**Faucet**

* [Testnet Faucet](https://faucet.aeternity.io/) - Fund your wallet with some Æ coins and get started

**Smart Contract Development**

* [Sophia HTTP Compiler](https://compiler.aepps.com/version) - Access the `version` endpoint
* [REPL](https://repl.aeternity.io/) - REPL with a basic UI
* [Contract Editor](https://contracts.aepps.com/) - Lightweight editor for quick prototyping
* [AEstudio](https://studio.aepps.com/) - IDE for quick prototyping with Wallet connection

<br>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.aeternity.com/aeternity-developer-tools/quick-start-guide/essential-tools-overview.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
