neatnode 3.1.4 → 3.1.5

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 (2) hide show
  1. package/package.json +1 -1
  2. package/src/cli.js +12 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "neatnode",
3
- "version": "3.1.4",
3
+ "version": "3.1.5",
4
4
  "description": "Plug & Play Node.js backend starter templates — build REST APIs, socket servers, and more in seconds.",
5
5
  "bin": {
6
6
  "neatnode": "./bin/index.js"
package/src/cli.js CHANGED
@@ -75,13 +75,24 @@ async function main() {
75
75
  // STEP 5 — Create Project (Remote download logic inside)
76
76
  await createProject({
77
77
  projectName,
78
- repoPath: chosen.repoPath,
78
+ repoPath: chosen.repoPath,
79
79
  includeCrud,
80
80
  crudName,
81
81
  language: langKey,
82
82
  });
83
83
 
84
+
84
85
  console.log(`\n✅ Project "${projectName}" created successfully using "${chosen.name}".\n`);
86
+
87
+ console.log("Next steps:");
88
+ console.log(` cd ${projectName}`);
89
+ console.log(" npm install");
90
+ console.log(" npm run dev\n");
91
+
92
+ console.log("🎉 Happy Coding!\n");
93
+
94
+
95
+
85
96
  }
86
97
 
87
98
  main().catch((err) => {