arikajs 0.10.9 → 0.10.11
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/LICENSE +1 -1
- package/README.md +29 -12
- package/package.json +31 -25
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -8,14 +8,15 @@
|
|
|
8
8
|
|
|
9
9
|
[](https://www.npmjs.com/package/arikajs)
|
|
10
10
|
[](https://www.npmjs.com/package/arikajs)
|
|
11
|
-
[](
|
|
11
|
+
[](../../LICENSE)
|
|
12
|
+
[](https://discord.gg/XUTjzwjrHK)
|
|
12
13
|
[](https://www.typescriptlang.org/)
|
|
13
14
|
[](https://nodejs.org/)
|
|
14
15
|
[](https://github.com/arikajs/arikajs/stargazers)
|
|
15
16
|
[](https://github.com/arikajs/arikajs/issues)
|
|
16
17
|
[](https://github.com/arikajs/arikajs/pulls)
|
|
17
18
|
|
|
18
|
-
[Quick Start](#quick-start) | [Core Modules](#-the-arikajs-ecosystem) | [Documentation](https://
|
|
19
|
+
[Quick Start](#quick-start) | [Core Modules](#-the-arikajs-ecosystem) | [Documentation](https://github.com/arikajs/arikajs#readme) | [Discord](https://discord.gg/XUTjzwjrHK)
|
|
19
20
|
|
|
20
21
|
</div>
|
|
21
22
|
|
|
@@ -124,13 +125,30 @@ const diff = Carbon.parse(user.created_at).diffForHumans();
|
|
|
124
125
|
|
|
125
126
|
The ArikaJS CLI is your best friend during development.
|
|
126
127
|
|
|
127
|
-
|
|
128
|
-
arika
|
|
129
|
-
arika
|
|
130
|
-
arika
|
|
131
|
-
arika
|
|
132
|
-
arika
|
|
133
|
-
|
|
128
|
+
### General Commands
|
|
129
|
+
- `arika new <name>` # Scaffold a new ArikaJS application
|
|
130
|
+
- `arika serve --dev` # Start the dev server with Hot Reload
|
|
131
|
+
- `arika list` # List all available commands
|
|
132
|
+
- `arika help <command>` # Show detailed help for a specific command
|
|
133
|
+
- `arika key:generate` # Generate a secure application key
|
|
134
|
+
|
|
135
|
+
### Generators (Scaffolding)
|
|
136
|
+
- `arika make:model` # Generate a Model and Migration
|
|
137
|
+
- `arika make:controller` # Generate a new Controller
|
|
138
|
+
- `arika make:middleware` # Generate a new Middleware
|
|
139
|
+
- `arika make:migration` # Create a new migration file
|
|
140
|
+
- `arika make:job` # Create a new background job class
|
|
141
|
+
|
|
142
|
+
### Database & Migrations
|
|
143
|
+
- `arika migrate` # Run pending database migrations
|
|
144
|
+
- `arika migrate:rollback` # Rollback the last database migration
|
|
145
|
+
- `arika migrate:fresh` # Drop all tables and re-run all migrations
|
|
146
|
+
- `arika db:seed` # Seed the database with records
|
|
147
|
+
|
|
148
|
+
### Queue & Background Jobs
|
|
149
|
+
- `arika queue:work` # Start the background worker
|
|
150
|
+
- `arika queue:retry` # Retry a failed background job
|
|
151
|
+
- `arika route:list` # Display all registered application routes
|
|
134
152
|
|
|
135
153
|
---
|
|
136
154
|
|
|
@@ -142,7 +160,7 @@ We love our community! Please see our [Contributing Guide](CONTRIBUTING.md) to l
|
|
|
142
160
|
|
|
143
161
|
## 📝 License
|
|
144
162
|
|
|
145
|
-
ArikaJS is open-
|
|
163
|
+
ArikaJS is open-source software licensed under the [MIT License](../../LICENSE).
|
|
146
164
|
|
|
147
165
|
<div align="center">
|
|
148
166
|
|
|
@@ -153,8 +171,7 @@ ArikaJS is open-sourced software licensed under the [MIT license](LICENSE).
|
|
|
153
171
|
## 💬 Community & Support
|
|
154
172
|
|
|
155
173
|
- 📖 [Documentation](https://github.com/arikajs/arikajs#readme)
|
|
156
|
-
- 💬 [Discord Community](https://discord.gg/
|
|
157
|
-
- 🐦 [Twitter](https://twitter.com/arikajs)
|
|
174
|
+
- 💬 [Discord Community](https://discord.gg/XUTjzwjrHK)
|
|
158
175
|
- 🐛 [Issue Tracker](https://github.com/arikajs/arikajs/issues)
|
|
159
176
|
|
|
160
177
|
---
|
package/package.json
CHANGED
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "arikajs",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.11",
|
|
4
4
|
"description": "The ArikaJS Framework.",
|
|
5
|
-
"
|
|
5
|
+
"keywords": [
|
|
6
|
+
"arikajs",
|
|
7
|
+
"framework",
|
|
8
|
+
"node.js",
|
|
9
|
+
"typescript"
|
|
10
|
+
],
|
|
11
|
+
"license": "MIT",
|
|
6
12
|
"main": "dist/index.js",
|
|
7
13
|
"types": "dist/index.d.ts",
|
|
8
14
|
"files": [
|
|
@@ -13,29 +19,29 @@
|
|
|
13
19
|
"@types/serve-static": "^2.2.0",
|
|
14
20
|
"busboy": "^1.6.0",
|
|
15
21
|
"serve-static": "^2.2.1",
|
|
16
|
-
"@arikajs/
|
|
17
|
-
"@arikajs/
|
|
18
|
-
"@arikajs/
|
|
19
|
-
"@arikajs/
|
|
20
|
-
"@arikajs/
|
|
21
|
-
"@arikajs/database": "0.10.
|
|
22
|
-
"@arikajs/console": "0.10.
|
|
23
|
-
"@arikajs/dispatcher": "0.10.
|
|
24
|
-
"@arikajs/
|
|
25
|
-
"@arikajs/
|
|
26
|
-
"@arikajs/
|
|
27
|
-
"@arikajs/
|
|
28
|
-
"@arikajs/
|
|
29
|
-
"@arikajs/mail": "0.10.
|
|
30
|
-
"@arikajs/
|
|
31
|
-
"@arikajs/
|
|
32
|
-
"@arikajs/
|
|
33
|
-
"@arikajs/
|
|
34
|
-
"@arikajs/
|
|
35
|
-
"@arikajs/
|
|
36
|
-
"@arikajs/
|
|
37
|
-
"@arikajs/
|
|
38
|
-
"@arikajs/
|
|
22
|
+
"@arikajs/authorization": "0.10.11",
|
|
23
|
+
"@arikajs/auth": "0.10.11",
|
|
24
|
+
"@arikajs/carbon": "^0.10.11",
|
|
25
|
+
"@arikajs/cache": "0.10.11",
|
|
26
|
+
"@arikajs/config": "0.10.11",
|
|
27
|
+
"@arikajs/database": "0.10.11",
|
|
28
|
+
"@arikajs/console": "0.10.11",
|
|
29
|
+
"@arikajs/dispatcher": "0.10.11",
|
|
30
|
+
"@arikajs/encryption": "0.10.11",
|
|
31
|
+
"@arikajs/events": "0.10.11",
|
|
32
|
+
"@arikajs/foundation": "0.10.11",
|
|
33
|
+
"@arikajs/http": "0.10.11",
|
|
34
|
+
"@arikajs/localization": "0.10.11",
|
|
35
|
+
"@arikajs/mail": "0.10.11",
|
|
36
|
+
"@arikajs/logging": "0.10.11",
|
|
37
|
+
"@arikajs/middleware": "0.10.11",
|
|
38
|
+
"@arikajs/queue": "0.10.11",
|
|
39
|
+
"@arikajs/scheduler": "0.10.11",
|
|
40
|
+
"@arikajs/router": "0.10.11",
|
|
41
|
+
"@arikajs/session": "0.10.11",
|
|
42
|
+
"@arikajs/storage": "0.10.11",
|
|
43
|
+
"@arikajs/validation": "0.10.11",
|
|
44
|
+
"@arikajs/view": "0.10.11"
|
|
39
45
|
},
|
|
40
46
|
"devDependencies": {
|
|
41
47
|
"@types/node": "^20.11.24",
|