arikajs 0.1.0 → 0.1.2

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.

Potentially problematic release.


This version of arikajs might be problematic. Click here for more details.

package/README.md CHANGED
@@ -44,9 +44,24 @@ ArikaJS is a **modern, elegant, and powerful** Node.js framework that brings ent
44
44
 
45
45
  ## 📦 Installation
46
46
 
47
- ### Quick Start with CLI
47
+ ### Option 1: Quick Start (Using npx)
48
48
 
49
- The fastest way to get started is using the ArikaJS CLI:
49
+ The fastest way to create a new ArikaJS project is using `npx`. No installation required!
50
+
51
+ ```bash
52
+ # Create a new project
53
+ npx @arikajs/cli new my-app
54
+
55
+ # Navigate to your project
56
+ cd my-app
57
+
58
+ # Start developing
59
+ npm run dev
60
+ ```
61
+
62
+ ### Option 2: Global Installation
63
+
64
+ If you prefer to have the `arika` command available everywhere, you can install the CLI globally:
50
65
 
51
66
  ```bash
52
67
  # Install the CLI globally
@@ -54,9 +69,7 @@ npm install -g @arikajs/cli
54
69
 
55
70
  # Create a new project
56
71
  arika new my-app
57
-
58
- # Navigate to your project
59
- cd my-app
72
+ ```
60
73
 
61
74
  # Install dependencies
62
75
  npm install
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arikajs",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "The ArikaJS Framework.",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -11,28 +11,28 @@
11
11
  "test": "npx tsx tests/Framework.test.ts"
12
12
  },
13
13
  "dependencies": {
14
- "@arikajs/auth": "file:../auth",
15
- "@arikajs/authorization": "file:../authorization",
16
- "@arikajs/cache": "file:../cache",
17
- "@arikajs/cli": "file:../cli",
18
- "@arikajs/console": "file:../console",
19
- "@arikajs/database": "file:../database",
20
- "@arikajs/dispatcher": "file:../dispatcher",
21
- "@arikajs/encryption": "file:../encryption",
22
- "@arikajs/events": "file:../events",
23
- "@arikajs/foundation": "file:../foundation",
24
- "@arikajs/http": "file:../http",
25
- "@arikajs/logging": "file:../logging",
26
- "@arikajs/mail": "file:../mail",
27
- "@arikajs/middleware": "file:../middleware",
28
- "@arikajs/queue": "file:../queue",
29
- "@arikajs/router": "file:../router",
30
- "@arikajs/storage": "file:../storage",
31
- "@arikajs/validation": "file:../validation",
32
- "@arikajs/view": "file:../view"
14
+ "@arikajs/auth": "^0.1.2",
15
+ "@arikajs/authorization": "^0.1.2",
16
+ "@arikajs/cache": "^0.1.2",
17
+ "@arikajs/cli": "^0.1.2",
18
+ "@arikajs/console": "^0.1.2",
19
+ "@arikajs/database": "^0.1.2",
20
+ "@arikajs/dispatcher": "^0.1.2",
21
+ "@arikajs/encryption": "^0.1.2",
22
+ "@arikajs/events": "^0.1.2",
23
+ "@arikajs/foundation": "^0.1.2",
24
+ "@arikajs/http": "^0.1.2",
25
+ "@arikajs/logging": "^0.1.2",
26
+ "@arikajs/mail": "^0.1.2",
27
+ "@arikajs/middleware": "^0.1.2",
28
+ "@arikajs/queue": "^0.1.2",
29
+ "@arikajs/router": "^0.1.2",
30
+ "@arikajs/storage": "^0.1.2",
31
+ "@arikajs/validation": "^0.1.2",
32
+ "@arikajs/view": "^0.1.2"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@types/node": "^20.11.24",
36
36
  "typescript": "^5.3.3"
37
37
  }
38
- }
38
+ }
@@ -1,38 +0,0 @@
1
- {
2
- "name": "arikajs",
3
- "version": "0.1.0",
4
- "description": "The ArikaJS Framework.",
5
- "license": "MIT",
6
- "main": "dist/index.js",
7
- "types": "dist/index.d.ts",
8
- "scripts": {
9
- "build": "tsc -p tsconfig.json",
10
- "clean": "rm -rf dist",
11
- "test": "npx tsx tests/Framework.test.ts"
12
- },
13
- "dependencies": {
14
- "@arikajs/auth": "file:../auth",
15
- "@arikajs/authorization": "file:../authorization",
16
- "@arikajs/cache": "file:../cache",
17
- "@arikajs/cli": "file:../cli",
18
- "@arikajs/console": "file:../console",
19
- "@arikajs/database": "file:../database",
20
- "@arikajs/dispatcher": "file:../dispatcher",
21
- "@arikajs/encryption": "file:../encryption",
22
- "@arikajs/events": "file:../events",
23
- "@arikajs/foundation": "file:../foundation",
24
- "@arikajs/http": "file:../http",
25
- "@arikajs/logging": "file:../logging",
26
- "@arikajs/mail": "file:../mail",
27
- "@arikajs/middleware": "file:../middleware",
28
- "@arikajs/queue": "file:../queue",
29
- "@arikajs/router": "file:../router",
30
- "@arikajs/storage": "file:../storage",
31
- "@arikajs/validation": "file:../validation",
32
- "@arikajs/view": "file:../view"
33
- },
34
- "devDependencies": {
35
- "@types/node": "^20.11.24",
36
- "typescript": "^5.3.3"
37
- }
38
- }