arikajs 0.10.10 → 0.10.12

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 +17 -15
  2. package/README.md +32 -20
  3. package/package.json +31 -25
package/LICENSE CHANGED
@@ -1,19 +1,21 @@
1
- Business Source License 1.1
1
+ MIT License
2
2
 
3
- Copyright (c) 2024-2026 Prakash Tank. All rights reserved.
3
+ Copyright (c) 2024-2026 Prakash Tank
4
4
 
5
- This software is licensed under the Business Source License 1.1 (BSL-1.1).
6
- The full license text is available in the root LICENSE file of this repository.
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
- Licensed Work: ArikaJS Framework
9
- Licensor: Prakash Tank
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
- For commercial licensing, contact: prakashtank@arikajs.dev
14
-
15
- ---
16
-
17
- Trademark Notice: "ArikaJS" is a trademark of Prakash Tank.
18
- You may not use the ArikaJS name or logo for derivative works or forks
19
- without prior written permission.
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,14 @@
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: BSL-1.1](https://img.shields.io/badge/License-BSL_1.1-orange.svg?style=flat-square)](../../LICENSE)
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
- [![GitHub stars](https://img.shields.io/github/stars/arikajs/arikajs.svg?style=flat-square)](https://github.com/arikajs/arikajs/stargazers)
15
15
  [![GitHub issues](https://img.shields.io/github/issues/arikajs/arikajs.svg?style=flat-square)](https://github.com/arikajs/arikajs/issues)
16
16
  [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](https://github.com/arikajs/arikajs/pulls)
17
17
 
18
- [Quick Start](#quick-start) | [Core Modules](#-the-arikajs-ecosystem) | [Documentation](https://arikajs.com) | [Discord](https://discord.gg/arikajs)
18
+ [Quick Start](#quick-start) | [Core Modules](#-the-arikajs-ecosystem) | [Documentation](https://github.com/arikajs/arikajs#readme) | [Discord](https://discord.gg/XUTjzwjrHK)
19
19
 
20
20
  </div>
21
21
 
@@ -124,13 +124,30 @@ const diff = Carbon.parse(user.created_at).diffForHumans();
124
124
 
125
125
  The ArikaJS CLI is your best friend during development.
126
126
 
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
- ```
127
+ ### General Commands
128
+ - `arika new <name>` # Scaffold a new ArikaJS application
129
+ - `arika serve --dev` # Start the dev server with Hot Reload
130
+ - `arika list` # List all available commands
131
+ - `arika help <command>` # Show detailed help for a specific command
132
+ - `arika key:generate` # Generate a secure application key
133
+
134
+ ### Generators (Scaffolding)
135
+ - `arika make:model` # Generate a Model and Migration
136
+ - `arika make:controller` # Generate a new Controller
137
+ - `arika make:middleware` # Generate a new Middleware
138
+ - `arika make:migration` # Create a new migration file
139
+ - `arika make:job` # Create a new background job class
140
+
141
+ ### Database & Migrations
142
+ - `arika migrate` # Run pending database migrations
143
+ - `arika migrate:rollback` # Rollback the last database migration
144
+ - `arika migrate:fresh` # Drop all tables and re-run all migrations
145
+ - `arika db:seed` # Seed the database with records
146
+
147
+ ### Queue & Background Jobs
148
+ - `arika queue:work` # Start the background worker
149
+ - `arika queue:retry` # Retry a failed background job
150
+ - `arika route:list` # Display all registered application routes
134
151
 
135
152
  ---
136
153
 
@@ -140,28 +157,23 @@ We love our community! Please see our [Contributing Guide](CONTRIBUTING.md) to l
140
157
 
141
158
  ---
142
159
 
143
- ## 📝 License
160
+ ## 📜 License
144
161
 
145
- ArikaJS is licensed under the [Business Source License 1.1 (BSL-1.1)](../../LICENSE).
146
-
147
- <div align="center">
162
+ ArikaJS is open-source software licensed under the **[MIT License](../../LICENSE)**.
148
163
 
149
- **Built with ❤️ by [Prakash Tank](https://github.com/prakashtank) & The ArikaJS Team**
150
-
151
- </div>
164
+ ---
152
165
 
153
166
  ## 💬 Community & Support
154
167
 
155
168
  - 📖 [Documentation](https://github.com/arikajs/arikajs#readme)
156
- - 💬 [Discord Community](https://discord.gg/arikajs)
157
- - 🐦 [Twitter](https://twitter.com/arikajs)
169
+ - 💬 [Discord Community](https://discord.gg/XUTjzwjrHK)
158
170
  - 🐛 [Issue Tracker](https://github.com/arikajs/arikajs/issues)
159
171
 
160
172
  ---
161
173
 
162
174
  <div align="center">
163
175
 
164
- **Built with ❤️ by the ArikaJS Team**
176
+ **Built with ❤️ by [Prakash Tank](https://github.com/prakashtank) and the ArikaJS Team**
165
177
 
166
178
  [GitHub](https://github.com/arikajs) • [npm](https://www.npmjs.com/package/arikajs)
167
179
 
package/package.json CHANGED
@@ -1,8 +1,14 @@
1
1
  {
2
2
  "name": "arikajs",
3
- "version": "0.10.10",
3
+ "version": "0.10.12",
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/auth": "0.10.10",
17
- "@arikajs/cache": "0.10.10",
18
- "@arikajs/carbon": "^0.10.10",
19
- "@arikajs/authorization": "0.10.10",
20
- "@arikajs/config": "0.10.10",
21
- "@arikajs/dispatcher": "0.10.10",
22
- "@arikajs/database": "0.10.10",
23
- "@arikajs/events": "0.10.10",
24
- "@arikajs/console": "0.10.10",
25
- "@arikajs/encryption": "0.10.10",
26
- "@arikajs/foundation": "0.10.10",
27
- "@arikajs/http": "0.10.10",
28
- "@arikajs/mail": "0.10.10",
29
- "@arikajs/logging": "0.10.10",
30
- "@arikajs/queue": "0.10.10",
31
- "@arikajs/localization": "0.10.10",
32
- "@arikajs/middleware": "0.10.10",
33
- "@arikajs/router": "0.10.10",
34
- "@arikajs/session": "0.10.10",
35
- "@arikajs/scheduler": "0.10.10",
36
- "@arikajs/storage": "0.10.10",
37
- "@arikajs/validation": "0.10.10",
38
- "@arikajs/view": "0.10.10"
22
+ "@arikajs/auth": "0.10.12",
23
+ "@arikajs/cache": "0.10.12",
24
+ "@arikajs/authorization": "0.10.12",
25
+ "@arikajs/config": "0.10.12",
26
+ "@arikajs/carbon": "^0.10.12",
27
+ "@arikajs/console": "0.10.12",
28
+ "@arikajs/database": "0.10.12",
29
+ "@arikajs/dispatcher": "0.10.12",
30
+ "@arikajs/encryption": "0.10.12",
31
+ "@arikajs/events": "0.10.12",
32
+ "@arikajs/foundation": "0.10.12",
33
+ "@arikajs/localization": "0.10.12",
34
+ "@arikajs/logging": "0.10.12",
35
+ "@arikajs/http": "0.10.12",
36
+ "@arikajs/mail": "0.10.12",
37
+ "@arikajs/middleware": "0.10.12",
38
+ "@arikajs/queue": "0.10.12",
39
+ "@arikajs/router": "0.10.12",
40
+ "@arikajs/scheduler": "0.10.12",
41
+ "@arikajs/storage": "0.10.12",
42
+ "@arikajs/session": "0.10.12",
43
+ "@arikajs/validation": "0.10.12",
44
+ "@arikajs/view": "0.10.12"
39
45
  },
40
46
  "devDependencies": {
41
47
  "@types/node": "^20.11.24",