Next Generation Rest API Framework
Axe API has great documentation. Please check it out in here.
Axe API is a Node.js framework that helps you create a Rest API in a declarative way quickly. 🪓
It has been written with TypeScript and built on Express and Knex.js.
You would understand easily what you are going to code when you look at a bunch of database tables and their relations with each other, more or less. Because, as a developer, you already know that Rest API best practices.
Therefore I asked a simple question more than two years ago;
"Can we create a Rest API in a declarative way, and handle all endpoints automatically?"
As a result of our work, we have a framework called Axe API that provides a solution to analyze your API definitions and handle all of the endpoints.
Basically, you define your models which are your API definitions, and Axe API analyzes them and processes all of your endpoints instead of you.
Let's look at an example!
You have two database tables; users
and posts
. These tables are related to each other and we aim that create a Rest API for basic CRUD endpoints.
The only thing to do is creating models like the following example;
class User extends Model {
get fillable(): string[] {
return ["email", "name", "surname"];
}
posts(): IRelation {
return this.hasMany("Post", "id", "user_id");
}
}
class Post extends Model {
get fillable(): string[] {
return ["title", "description"];
}
user(): IRelation {
return this.belongsTo("User", "user_id", "id");
}
}
Tada! 🎉
Your API is ready to process all of the following endpoints after those model definitions are done.
- [GET]
api/users
- [POST]
api/users
- [GET]
api/users/:id
- [PUT]
api/users/:id
- [DELETE]
api/users/:id
- [GET]
api/users/:userId/posts
- [POST]
api/users/:userId/posts
- [GET]
api/users/:userId/posts/:id
- [PUT]
api/users/:userId/posts/:id
- [DELETE]
api/users/:userId/posts/:id
This is the main power of Axe API. Nevertheless, it is not limited only to this power. There are many more features are waiting to discover. 💡
Using Axe API in an application is very easy. We've created a CLI tool for you; axe-magic.
You can create a new Axe API project by using axe-magic. But first, you can install it in your development environment. When you installed it, you can be able to access axe-magic command via CLI. You can use the following command to install axe-magic to your machine;
$ npm i -g axe-magic
$ axe-magic --version
1.0.0
After that, creating a new project is very easy. Just you can execute the following command;
$ axe-magic new my-api
This command will pull axe-api-template project to your current directory with a new name, my-api.
To install your project's depencies, you can execute the following commands in the root directory;
$ cd my-api
$ npm install
To serve this application, you can execute the following command;
$ npm run start:dev
After that, your first Axe API application will be running in localhost:3000
.
You will see the following API response if you visit localhost:3000.
{
"name": "AXE API",
"description": "The best API creation tool in the world."
}
If you can see that response, it means that your project is running properly.
Axe API has great documentation. Please check it out in here.