UNPKG
dewmyth-auth-nestjs-mongo
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.1
1. Install the package
dewmyth-auth-nestjs-mongo
/
src
/
main.ts
9 lines
(7 loc)
•
216 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
import
{
NestFactory
}
from
'@nestjs/core'
;
import
{
AppModule
}
from
'./app.module'
;
async
function
bootstrap
(
) {
const
app =
await
NestFactory
.
create
(
AppModule
);
await
app.
listen
(
3000
); }
bootstrap
();