Skip to content
This repository was archived by the owner on Sep 1, 2024. It is now read-only.

Commit 4d6a5c7

Browse files
committed
Added new blog post
1 parent 91cfde3 commit 4d6a5c7

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-0
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Axe API v1.4 is out!
2+
3+
`v1.4` comes with one feature and a security upgrades.
4+
5+
Let's discover it more!
6+
7+
## Axe CLI
8+
9+
Axe API had a separate tool called `axe-magic` to provide some CLI functionalities such as creating a new Axe API project. Axe API started to provide this CLI tool as a part of the framework library with the new version.
10+
11+
You can install the `axe-api` framework as a CLI tool if you wish.
12+
13+
```bash
14+
$ npm install -g axe-api
15+
```
16+
17+
You can start to use the `axe` CLI command after the installation.
18+
19+
```bash
20+
$ axe
21+
22+
Usage: axe-magic [options] [command]
23+
24+
AXE API CLI tool
25+
26+
Options:
27+
-V, --version output the version number
28+
-h, --help display help for command
29+
30+
Commands:
31+
new <project-name> Create a new Axe API project.
32+
model:create <models...> Create model files
33+
hooks:create <models...> Create hooks files for models
34+
help [command] display help for command
35+
```

docs/blog/BlogIndex.vue

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
<script setup lang="ts">
22
const posts = [
3+
{
4+
time: "21 April, 2024",
5+
title: "Axe API v1.4 is out!",
6+
url: "/blog/2024-04-21-axe-api-v1-4-is-out",
7+
},
38
{
49
time: "08 April, 2024",
510
title: "Axe API v1.3 is out!",

0 commit comments

Comments
 (0)