nodefony 7.0.0 → 7.0.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.
- package/CHANGELOG.md +2 -0
- package/README.md +15 -4
- package/cli/builder/bundles/users-bundle/package.json +15 -15
- package/cli/builder/project/skeletons/README.md +15 -4
- package/package.json +33 -33
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
## [7.0.2](https://github.com/nodefony/nodefony/compare/v7.0.1...v7.0.2) (2025-01-03)
|
|
2
|
+
## [7.0.1](https://github.com/nodefony/nodefony/compare/v7.0.0...v7.0.1) (2025-01-03)
|
|
1
3
|
## [7.0.0](https://github.com/nodefony/nodefony/compare/v7.0.0-beta.22...v7.0.0) (2024-05-19)
|
|
2
4
|
|
|
3
5
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -3,6 +3,8 @@
|
|
|
3
3
|
</p>
|
|
4
4
|
<h1 align="center">NODEFONY V7</h1>
|
|
5
5
|
|
|
6
|
+
|
|
7
|
+
|
|
6
8
|
[](https://nodei.co/npm/nodefony)
|
|
7
9
|
|
|
8
10
|
[](https://github.com/nodefony/nodefony/issues) [](https://github.com/nodefony/nodefony/actions) [](https://bestpractices.coreinfrastructure.org/projects/495)
|
|
@@ -12,6 +14,11 @@ Nodefony is Node.js full-stack web framework.
|
|
|
12
14
|
Nodefony can be used to develop a complete solution to create a Fullstack Web Application, Secure Api, or Microservices.
|
|
13
15
|
|
|
14
16
|
|
|
17
|
+
## Note on Migration to TypeScript
|
|
18
|
+
|
|
19
|
+
> **Important:** This repository is undergoing a migration to TypeScript. You can follow the progress and contribute at [nodefony-core](https://github.com/nodefony/nodefony-core). During this period, this repository will receive only security updates for its packages.
|
|
20
|
+
|
|
21
|
+
|
|
15
22
|
## Table of content
|
|
16
23
|
|
|
17
24
|
- [Features](#features)
|
|
@@ -76,16 +83,20 @@ Evolution priorities for the next version will focus on robustness, unit testing
|
|
|
76
83
|
|
|
77
84
|
You can follow Nodefony build with github actions at **<https://github.com/nodefony/nodefony/actions>**
|
|
78
85
|
|
|
79
|
-
## Nodefony
|
|
80
|
-
|
|
86
|
+
## Nodefony Module Implementation
|
|
87
|
+
|
|
88
|
+
Nodefony implements modules with CommonJS and ECMAScript 6 (Class, Inheritance). The development framework has now decided to migrate to TypeScript to leverage its type-checking capabilities and improve code quality and maintainability. [nodefony-core](https://github.com/nodefony/nodefony-core).
|
|
89
|
+
|
|
90
|
+
For more information on TypeScript, see the [TypeScript documentation](https://www.typescriptlang.org/).
|
|
91
|
+
|
|
92
|
+
The proposal for type annotations in ECMAScript is still relevant and can be followed here: [proposal-type-annotations](https://github.com/tc39/proposal-type-annotations).
|
|
81
93
|
|
|
82
|
-
**[proposal-type-annotations](https://github.com/tc39/proposal-type-annotations)**
|
|
83
94
|
|
|
84
95
|
## **Resources for Newcomers**
|
|
85
96
|
|
|
86
97
|
#### - **[Nodefony Starter Demo](https://nodefony.net)**
|
|
87
98
|
|
|
88
|
-
#### - **[Nodefony
|
|
99
|
+
#### - **[Nodefony Github](https://github.com/nodefony/nodefony)**
|
|
89
100
|
|
|
90
101
|
#### - **[Nodefony Documentation](https://nodefony.net/documentation/nodefony)**
|
|
91
102
|
|
|
@@ -17,40 +17,40 @@
|
|
|
17
17
|
"repository": {},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@withshepherd/faker": "5.5.5",
|
|
20
|
-
"mongoose-paginate-v2": "1.8.
|
|
20
|
+
"mongoose-paginate-v2": "^1.8.5",
|
|
21
21
|
"validator": "13.12.0"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@babel/core": "7.
|
|
24
|
+
"@babel/core": "^7.26.0",
|
|
25
25
|
"@babel/plugin-proposal-class-properties": "7.18.6",
|
|
26
26
|
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
|
27
|
-
"@babel/preset-env": "7.
|
|
28
|
-
"@babel/preset-react": "7.
|
|
29
|
-
"@fortawesome/fontawesome-free": "6.
|
|
27
|
+
"@babel/preset-env": "^7.26.0",
|
|
28
|
+
"@babel/preset-react": "^7.26.3",
|
|
29
|
+
"@fortawesome/fontawesome-free": "^6.7.2",
|
|
30
30
|
"@mapbox/node-pre-gyp": "1.0.11",
|
|
31
31
|
"@popperjs/core": "2.11.8",
|
|
32
|
-
"babel-loader": "9.1
|
|
32
|
+
"babel-loader": "^9.2.1",
|
|
33
33
|
"babel-register": "^6.26.0",
|
|
34
34
|
"bootstrap": "5.3.3",
|
|
35
35
|
"buffer": "6.0.3",
|
|
36
36
|
"clean-webpack-plugin": "^4.0.0",
|
|
37
37
|
"css-hot-loader": "^1.4.4",
|
|
38
|
-
"css-loader": "7.1.
|
|
38
|
+
"css-loader": "7.1.2",
|
|
39
39
|
"expose-loader": "5.0.0",
|
|
40
|
-
"html-webpack-plugin": "5.6.
|
|
40
|
+
"html-webpack-plugin": "^5.6.3",
|
|
41
41
|
"imports-loader": "5.0.0",
|
|
42
42
|
"jquery": "3.7.1",
|
|
43
|
-
"mini-css-extract-plugin": "2.9.
|
|
44
|
-
"node-gyp": "
|
|
45
|
-
"sass": "1.
|
|
43
|
+
"mini-css-extract-plugin": "^2.9.2",
|
|
44
|
+
"node-gyp": "^11.0.0",
|
|
45
|
+
"sass": "^1.83.0",
|
|
46
46
|
"sass-loader": "14.2.1",
|
|
47
47
|
"sequelize-cli": "6.6.2",
|
|
48
|
-
"stream": "0.0.
|
|
48
|
+
"stream": "0.0.3",
|
|
49
49
|
"style-loader": "3.3.4",
|
|
50
50
|
"svg-inline-loader": "^0.8.2",
|
|
51
|
-
"terser-webpack-plugin": "5.3.
|
|
52
|
-
"webpack": "5.
|
|
53
|
-
"webpack-merge": "
|
|
51
|
+
"terser-webpack-plugin": "^5.3.11",
|
|
52
|
+
"webpack": "^5.97.1",
|
|
53
|
+
"webpack-merge": "6.0.1"
|
|
54
54
|
},
|
|
55
55
|
"license": "CECILL-B",
|
|
56
56
|
"readmeFilename": "README.md",
|
|
@@ -3,6 +3,8 @@
|
|
|
3
3
|
</p>
|
|
4
4
|
<h1 align="center">NODEFONY V7</h1>
|
|
5
5
|
|
|
6
|
+
|
|
7
|
+
|
|
6
8
|
[](https://nodei.co/npm/nodefony)
|
|
7
9
|
|
|
8
10
|
[](https://github.com/nodefony/nodefony/issues) [](https://github.com/nodefony/nodefony/actions) [](https://bestpractices.coreinfrastructure.org/projects/495)
|
|
@@ -12,6 +14,11 @@ Nodefony is Node.js full-stack web framework.
|
|
|
12
14
|
Nodefony can be used to develop a complete solution to create a Fullstack Web Application, Secure Api, or Microservices.
|
|
13
15
|
|
|
14
16
|
|
|
17
|
+
## Note on Migration to TypeScript
|
|
18
|
+
|
|
19
|
+
> **Important:** This repository is undergoing a migration to TypeScript. You can follow the progress and contribute at [nodefony-core](https://github.com/nodefony/nodefony-core). During this period, this repository will receive only security updates for its packages.
|
|
20
|
+
|
|
21
|
+
|
|
15
22
|
## Table of content
|
|
16
23
|
|
|
17
24
|
- [Features](#features)
|
|
@@ -76,16 +83,20 @@ Evolution priorities for the next version will focus on robustness, unit testing
|
|
|
76
83
|
|
|
77
84
|
You can follow Nodefony build with github actions at **<https://github.com/nodefony/nodefony/actions>**
|
|
78
85
|
|
|
79
|
-
## Nodefony
|
|
80
|
-
|
|
86
|
+
## Nodefony Module Implementation
|
|
87
|
+
|
|
88
|
+
Nodefony implements modules with CommonJS and ECMAScript 6 (Class, Inheritance). The development framework has now decided to migrate to TypeScript to leverage its type-checking capabilities and improve code quality and maintainability. [nodefony-core](https://github.com/nodefony/nodefony-core).
|
|
89
|
+
|
|
90
|
+
For more information on TypeScript, see the [TypeScript documentation](https://www.typescriptlang.org/).
|
|
91
|
+
|
|
92
|
+
The proposal for type annotations in ECMAScript is still relevant and can be followed here: [proposal-type-annotations](https://github.com/tc39/proposal-type-annotations).
|
|
81
93
|
|
|
82
|
-
**[proposal-type-annotations](https://github.com/tc39/proposal-type-annotations)**
|
|
83
94
|
|
|
84
95
|
## **Resources for Newcomers**
|
|
85
96
|
|
|
86
97
|
#### - **[Nodefony Starter Demo](https://nodefony.net)**
|
|
87
98
|
|
|
88
|
-
#### - **[Nodefony
|
|
99
|
+
#### - **[Nodefony Github](https://github.com/nodefony/nodefony)**
|
|
89
100
|
|
|
90
101
|
#### - **[Nodefony Documentation](https://nodefony.net/documentation/nodefony)**
|
|
91
102
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nodefony",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.2",
|
|
4
4
|
"main": "autoloader.es6",
|
|
5
5
|
"description": "Nodefony Framework Core",
|
|
6
6
|
"contributors": [],
|
|
@@ -32,37 +32,37 @@
|
|
|
32
32
|
"nodefony": "bin/nodefony"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@babel/core": "7.
|
|
36
|
-
"@babel/parser": "7.
|
|
37
|
-
"@graphql-tools/merge": "9.0.
|
|
38
|
-
"@graphql-tools/schema": "10.0.
|
|
39
|
-
"@graphql-tools/utils": "10.
|
|
40
|
-
"@nodefony/elastic-bundle": "7.0.
|
|
41
|
-
"@nodefony/framework-bundle": "7.0.
|
|
42
|
-
"@nodefony/http-bundle": "7.0.
|
|
43
|
-
"@nodefony/mail-bundle": "7.0.
|
|
44
|
-
"@nodefony/mongoose-bundle": "7.0.
|
|
45
|
-
"@nodefony/monitoring-bundle": "7.0.
|
|
46
|
-
"@nodefony/realtime-bundle": "7.0.
|
|
47
|
-
"@nodefony/redis-bundle": "7.0.
|
|
48
|
-
"@nodefony/security-bundle": "7.0.
|
|
49
|
-
"@nodefony/sequelize-bundle": "7.0.
|
|
50
|
-
"@nodefony/unittests-bundle": "7.0.
|
|
35
|
+
"@babel/core": "^7.26.0",
|
|
36
|
+
"@babel/parser": "^7.26.3",
|
|
37
|
+
"@graphql-tools/merge": "^9.0.16",
|
|
38
|
+
"@graphql-tools/schema": "^10.0.15",
|
|
39
|
+
"@graphql-tools/utils": "^10.7.1",
|
|
40
|
+
"@nodefony/elastic-bundle": "7.0.2",
|
|
41
|
+
"@nodefony/framework-bundle": "7.0.2",
|
|
42
|
+
"@nodefony/http-bundle": "7.0.2",
|
|
43
|
+
"@nodefony/mail-bundle": "7.0.2",
|
|
44
|
+
"@nodefony/mongoose-bundle": "7.0.2",
|
|
45
|
+
"@nodefony/monitoring-bundle": "7.0.2",
|
|
46
|
+
"@nodefony/realtime-bundle": "7.0.2",
|
|
47
|
+
"@nodefony/redis-bundle": "7.0.2",
|
|
48
|
+
"@nodefony/security-bundle": "7.0.2",
|
|
49
|
+
"@nodefony/sequelize-bundle": "7.0.2",
|
|
50
|
+
"@nodefony/unittests-bundle": "7.0.2",
|
|
51
51
|
"@vue/cli": "5.0.8",
|
|
52
52
|
"@vue/cli-service": "5.0.8",
|
|
53
53
|
"@vue/cli-service-global": "4.5.19",
|
|
54
54
|
"asciify": "1.3.5",
|
|
55
55
|
"bluebird": "3.7.2",
|
|
56
|
-
"chai": "
|
|
57
|
-
"chokidar": "
|
|
56
|
+
"chai": "^5.1.2",
|
|
57
|
+
"chokidar": "^4.0.3",
|
|
58
58
|
"cli-color": "2.0.4",
|
|
59
59
|
"cli-table3": "0.6.5",
|
|
60
60
|
"clui": "0.3.6",
|
|
61
61
|
"commander": "12.1.0",
|
|
62
|
-
"core-js": "3.
|
|
62
|
+
"core-js": "^3.39.0",
|
|
63
63
|
"create-react-app": "5.0.1",
|
|
64
|
-
"graphql": "16.
|
|
65
|
-
"inquirer": "
|
|
64
|
+
"graphql": "^16.10.0",
|
|
65
|
+
"inquirer": "10.1.8",
|
|
66
66
|
"js-yaml": "4.1.0",
|
|
67
67
|
"lodash": "4.17.21",
|
|
68
68
|
"lodash.isregexp": "4.0.1",
|
|
@@ -70,28 +70,28 @@
|
|
|
70
70
|
"mime": "=3.0.0",
|
|
71
71
|
"moment": "2.30.1",
|
|
72
72
|
"node-cron": "3.0.3",
|
|
73
|
-
"node-emoji": "2.
|
|
74
|
-
"npm": "
|
|
75
|
-
"pm2": "5.3
|
|
73
|
+
"node-emoji": "^2.2.0",
|
|
74
|
+
"npm": "^11.0.0",
|
|
75
|
+
"pm2": "^5.4.3",
|
|
76
76
|
"promise": "8.3.0",
|
|
77
77
|
"request": "2.88.2",
|
|
78
|
-
"semver": "7.6.
|
|
78
|
+
"semver": "7.6.3",
|
|
79
79
|
"shelljs": "0.8.5",
|
|
80
80
|
"shortid": "2.2.16",
|
|
81
|
-
"simple-git": "3.
|
|
81
|
+
"simple-git": "^3.27.0",
|
|
82
82
|
"spdx": "0.5.2",
|
|
83
83
|
"twig": "1.17.1",
|
|
84
|
-
"uuid": "
|
|
85
|
-
"webpack": "5.
|
|
84
|
+
"uuid": "^11.0.3",
|
|
85
|
+
"webpack": "^5.97.1",
|
|
86
86
|
"xml2js": "0.6.2",
|
|
87
87
|
"yarn": "1.22.22"
|
|
88
88
|
},
|
|
89
89
|
"devDependencies": {
|
|
90
|
-
"babel-loader": "9.1
|
|
90
|
+
"babel-loader": "^9.2.1",
|
|
91
91
|
"babel-polyfill": "6.26.0",
|
|
92
|
-
"eslint": "9.
|
|
93
|
-
"webpack-cli": "
|
|
94
|
-
"webpack-merge": "
|
|
92
|
+
"eslint": "^9.17.0",
|
|
93
|
+
"webpack-cli": "^6.0.1",
|
|
94
|
+
"webpack-merge": "6.0.1"
|
|
95
95
|
},
|
|
96
96
|
"repository": {
|
|
97
97
|
"type": "git",
|