This commit is contained in:
2025-06-09 12:10:02 -06:00
parent 18264ef7cf
commit a88f6faa74
6 changed files with 343 additions and 0 deletions

11
package.json Normal file
View File

@ -0,0 +1,11 @@
{
"name": "nodeapi-template",
"version": "1.0.0",
"description": "Basic node.js API template",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "node --watch index.js"
},
"type": "module"
}