Skip to content

Commit 3706110

Browse files
authored
Initial commit
0 parents  commit 3706110

File tree

20 files changed

+2399
-0
lines changed

20 files changed

+2399
-0
lines changed

.env.example

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2+
3+
PORT=

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/node_modules
2+
/build
3+
4+
build/
5+
6+
.env

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# node-typescript-api-archetype
2+
A NodeJs folder structure template for building RESTFULL API using TypeScript and OOP.

nodemon.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"watch": ["src"],
3+
"ext": ".ts,.js",
4+
"ignore": [],
5+
"exec": "npx ts-node ./src/server.ts"
6+
}

0 commit comments

Comments
 (0)