aaex-cli 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +19 -0
- package/package.json +26 -26
package/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# AaExJS
|
|
2
|
+
## V.1.0.0
|
|
3
|
+
## Description
|
|
4
|
+
Light weight SSR framework for react with filebased page and api routing. Builds on Vitejs alreadt existing SSR functionality.
|
|
5
|
+
|
|
6
|
+
## Features
|
|
7
|
+
- File routing using aaex-file-router (can be used seperatly)
|
|
8
|
+
- API routing using hybrid solution only available in the full framework
|
|
9
|
+
- SSR rendering using vites native functions + additional functionality
|
|
10
|
+
-full typescript support (currently only typescript)
|
|
11
|
+
- all vite plugins that work with ssr should work
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
```sh
|
|
15
|
+
npx create-aaex-app <project-name>
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## V1.1
|
|
19
|
+
Added user system
|
package/package.json
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "aaex-cli",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "Command line interface for creating aaexjs app",
|
|
5
|
-
"license": "ISC",
|
|
6
|
-
"author": "",
|
|
7
|
-
"type": "module",
|
|
8
|
-
"bin": {
|
|
9
|
-
"create-aaex-app": "./create-aaex-app.js"
|
|
10
|
-
},
|
|
11
|
-
"scripts": {
|
|
12
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
13
|
-
},
|
|
14
|
-
"devDependencies": {
|
|
15
|
-
"@vitejs/plugin-react": "^5.1.1",
|
|
16
|
-
"aaex-file-router": "^1.4.5",
|
|
17
|
-
"react": "^19.2.1",
|
|
18
|
-
"react-dom": "^19.2.1",
|
|
19
|
-
"react-router": "^7.10.1",
|
|
20
|
-
"typescript": "^5.9.3",
|
|
21
|
-
"vite": "^7.2.6"
|
|
22
|
-
},
|
|
23
|
-
"dependencies": {
|
|
24
|
-
"fs-extra": "^11.3.2"
|
|
25
|
-
}
|
|
26
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "aaex-cli",
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "Command line interface for creating aaexjs app",
|
|
5
|
+
"license": "ISC",
|
|
6
|
+
"author": "",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"bin": {
|
|
9
|
+
"create-aaex-app": "./create-aaex-app.js"
|
|
10
|
+
},
|
|
11
|
+
"scripts": {
|
|
12
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
13
|
+
},
|
|
14
|
+
"devDependencies": {
|
|
15
|
+
"@vitejs/plugin-react": "^5.1.1",
|
|
16
|
+
"aaex-file-router": "^1.4.5",
|
|
17
|
+
"react": "^19.2.1",
|
|
18
|
+
"react-dom": "^19.2.1",
|
|
19
|
+
"react-router": "^7.10.1",
|
|
20
|
+
"typescript": "^5.9.3",
|
|
21
|
+
"vite": "^7.2.6"
|
|
22
|
+
},
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"fs-extra": "^11.3.2"
|
|
25
|
+
}
|
|
26
|
+
}
|