arikajs 0.10.10 → 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 +17 -15
- package/README.md +29 -12
- package/package.json +31 -25
package/LICENSE
CHANGED
|
@@ -1,19 +1,21 @@
|
|
|
1
|
-
|
|
1
|
+
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2024-2026 Prakash Tank
|
|
3
|
+
Copyright (c) 2024-2026 Prakash Tank
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
7
11
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
Change Date: 2029-01-01
|
|
11
|
-
Change License: Apache License, Version 2.0
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
12
14
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
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
|
-
[](../../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 licensed under the [
|
|
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 licensed under the [Business Source License 1.1 (BSL-1.1)](../../LICE
|
|
|
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/carbon": "^0.10.
|
|
19
|
-
"@arikajs/
|
|
20
|
-
"@arikajs/config": "0.10.
|
|
21
|
-
"@arikajs/
|
|
22
|
-
"@arikajs/
|
|
23
|
-
"@arikajs/
|
|
24
|
-
"@arikajs/
|
|
25
|
-
"@arikajs/
|
|
26
|
-
"@arikajs/foundation": "0.10.
|
|
27
|
-
"@arikajs/http": "0.10.
|
|
28
|
-
"@arikajs/
|
|
29
|
-
"@arikajs/
|
|
30
|
-
"@arikajs/
|
|
31
|
-
"@arikajs/
|
|
32
|
-
"@arikajs/
|
|
33
|
-
"@arikajs/
|
|
34
|
-
"@arikajs/
|
|
35
|
-
"@arikajs/
|
|
36
|
-
"@arikajs/storage": "0.10.
|
|
37
|
-
"@arikajs/validation": "0.10.
|
|
38
|
-
"@arikajs/view": "0.10.
|
|
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",
|