INNER CODE UNIT · TypeScript
bootstrap
dzzzzzy/Nestjs-Learning · demo/graphql-api/src/main.ts:6
async function bootstrap() {
const app = await NestFactory.create(AppModule);
await app.listen(3000, '0.0.0.0', () => {
Logger.log('GraphQL api server started on: http://localhost:3000/graphql');
});
}
bootstrap();