You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/node.js.yml
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,8 @@ jobs:
16
16
17
17
strategy:
18
18
matrix:
19
-
node-version: [12.x, 13.x, 14.x, 15.x, 16.x]
19
+
node-version: [16.x, 17.x, 18.x, 19.x, 20.x]
20
+
# node version 12, 13, 14 says cannot find arg of undefined, 15 says bad engine for most upgraded packages in the cli so they have been removed from our node versions
20
21
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
> The latest version of CLI generates API boilerplate templates v1.0.0
32
32
33
33
#
@@ -49,7 +49,7 @@ The [node-mongo-cli](https://www.npmjs.com/package/@code-collabo/node-mongo-cli)
49
49
50
50
* API boilerplate templates now use the MVC architecture pattern i.e. separated route, model, controller, and service files.
51
51
* Development environment already set up with @babel (for esm template only), eslint, and server watch.
52
-
* The default connection setup type is MongoDB Atlas. But you get to choose if you want to use it or switch to the Local mongoDB connection setup type.
52
+
* The default connection setup type is MongoDB Atlas. You get to choose if you want to use Atlas or switch to the Local mongoDB connection setup type, and you also get to save your preferred connection setup type for when next you run the automated development server.
53
53
* Improved user experience with the newly added walk-through prompts in the terminal: quick to setup, easy to use, with automated and improved user support.
54
54
55
55
### CLI installation
@@ -64,11 +64,6 @@ After installing globally, use the node-mongo command.
64
64
node-mongo
65
65
````
66
66
67
-
### Show CLI help
68
-
````
69
-
node-mongo --help
70
-
````
71
-
72
67
### CLI usage
73
68
````
74
69
node-mongo <folder_name> <template>
@@ -82,6 +77,15 @@ Replace \<folder\_name> with your preferred folder name. Replace \<template> wit
82
77
node-mongo test-folder ts
83
78
```
84
79
80
+
### API boilerplate template and automated development server
81
+
82
+
See the [API boilerplate templates documentation](https://code-collabo.gitbook.io/node-mongo-v2.0.0/api-boilerplate-templates) for detailed steps to setup your generated API boilerplate template, run the automated development server, and build your own mongoDB backend application with it.
83
+
84
+
### Show CLI help
85
+
````
86
+
node-mongo --help
87
+
````
88
+
85
89
### CLI flags
86
90
````
87
91
-h, --help Show help
@@ -111,7 +115,7 @@ specified or when folder name already exists.
111
115
## Documentation
112
116
See the links to the official documentation of the node-mongo project and community building it below:
Appreciation to [@dkundel](https://github.com/dkundel), [@academind](https://github.com/academind), [@CodAffection](https://github.com/CodAffection), [@coryhouse](https://github.com/coryhouse) for the awesome helpful course resources they create, and to [@jiobiagba](https://github.com/jiobiagba) and [@IsraelObiagba](https://github.com/IsraelObiagba) for their occasional but mighty contributions.
0 commit comments