Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[학습] Nest.js 학습하기 #14

Open
dlgustn555 opened this issue Mar 4, 2019 · 1 comment
Open

[학습] Nest.js 학습하기 #14

dlgustn555 opened this issue Mar 4, 2019 · 1 comment
Assignees
Labels

Comments

@dlgustn555
Copy link
Owner

https://morioh.com/p/74ffc8a798bb/how-to-build-a-blog-with-nest-js-mongodb-and-vue-js

@dlgustn555 dlgustn555 self-assigned this Mar 4, 2019
@dlgustn555
Copy link
Owner Author

expresss로 index.html 웹서비스 하기.
간단하네....

const express = require('express')
const http = require('http')
const path = require('path')

const app = express();
const publicPath = path.resolve(__dirname, '../dist')

app.use(express.static(publicPath))

http.createServer(app).listen(8080, () => {
  // eslint-disable-next-line no-console
  console.log('Server Running PORT : 8080!!')
})

@dlgustn555 dlgustn555 added the 작업 우선 순위 label Aug 6, 2019
@dlgustn555 dlgustn555 changed the title [Server] Nest.js 학습하기 [학습] Nest.js 학습하기 Aug 8, 2019
@dlgustn555 dlgustn555 removed the 작업 우선 순위 label Aug 8, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant