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.
Files changed (3) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +29 -12
  3. package/package.json +31 -25
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2026 ArikaJs
3
+ Copyright (c) 2024-2026 Prakash Tank
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -8,14 +8,15 @@
8
8
 
9
9
  [![npm version](https://img.shields.io/npm/v/arikajs.svg?style=flat-square)](https://www.npmjs.com/package/arikajs)
10
10
  [![npm downloads](https://img.shields.io/npm/dm/arikajs.svg?style=flat-square)](https://www.npmjs.com/package/arikajs)
11
- [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg?style=flat-square)](https://opensource.org/licenses/MIT)
11
+ [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg?style=flat-square)](../../LICENSE)
12
+ [![Discord](https://img.shields.io/badge/discord-join-7289da?style=flat&logo=discord&logoColor=white)](https://discord.gg/XUTjzwjrHK)
12
13
  [![TypeScript](https://img.shields.io/badge/TypeScript-5.0+-blue.svg?style=flat-square)](https://www.typescriptlang.org/)
13
14
  [![Node.js](https://img.shields.io/badge/Node.js-20+-green.svg?style=flat-square)](https://nodejs.org/)
14
15
  [![GitHub stars](https://img.shields.io/github/stars/arikajs/arikajs.svg?style=flat-square)](https://github.com/arikajs/arikajs/stargazers)
15
16
  [![GitHub issues](https://img.shields.io/github/issues/arikajs/arikajs.svg?style=flat-square)](https://github.com/arikajs/arikajs/issues)
16
17
  [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](https://github.com/arikajs/arikajs/pulls)
17
18
 
18
- [Quick Start](#quick-start) | [Core Modules](#-the-arikajs-ecosystem) | [Documentation](https://arikajs.com) | [Discord](https://discord.gg/arikajs)
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
- ```bash
128
- arika list # List all available commands
129
- arika help <command> # Show detailed help for a specific command
130
- arika make:model # Interactive menu to generate models/migrations
131
- arika migrate # Run pending database migrations
132
- arika queue:work # Start the background worker
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-sourced software licensed under the [MIT license](LICENSE).
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/arikajs)
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.9",
3
+ "version": "0.10.11",
4
4
  "description": "The ArikaJS Framework.",
5
- "license": "BSL-1.1",
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/carbon": "^0.10.9",
17
- "@arikajs/authorization": "0.10.9",
18
- "@arikajs/cache": "0.10.9",
19
- "@arikajs/config": "0.10.9",
20
- "@arikajs/auth": "0.10.9",
21
- "@arikajs/database": "0.10.9",
22
- "@arikajs/console": "0.10.9",
23
- "@arikajs/dispatcher": "0.10.9",
24
- "@arikajs/events": "0.10.9",
25
- "@arikajs/localization": "0.10.9",
26
- "@arikajs/http": "0.10.9",
27
- "@arikajs/foundation": "0.10.9",
28
- "@arikajs/encryption": "0.10.9",
29
- "@arikajs/mail": "0.10.9",
30
- "@arikajs/middleware": "0.10.9",
31
- "@arikajs/queue": "0.10.9",
32
- "@arikajs/logging": "0.10.9",
33
- "@arikajs/storage": "0.10.9",
34
- "@arikajs/session": "0.10.9",
35
- "@arikajs/router": "0.10.9",
36
- "@arikajs/scheduler": "0.10.9",
37
- "@arikajs/view": "0.10.9",
38
- "@arikajs/validation": "0.10.9"
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",