Building Your First API
Learn how to build a complete RESTful API with Azura in this interactive tutorial.
Building Your First API
Learn how to build a complete RESTful API with Azura in this interactive tutorial.
Progress:
1Setting up your project
Step 1 of 5
Let's start by creating a new Azura project and installing the necessary dependencies.
typescript
// Create a new directory for your project
mkdir my-first-api
cd my-first-api
// Initialize a new npm project
npm init -y
// Install Azura and its dependencies
npm install @atosjs/azura typescript ts-node @types/node