일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- NPM
- Kotlin
- Sqoop
- mapreduce
- react
- mybatis
- table
- Python
- xPlatform
- IntelliJ
- MSSQL
- SPC
- window
- SQL
- tomcat
- SSL
- Eclipse
- hadoop
- 보조정렬
- Android
- plugin
- JavaScript
- vaadin
- es6
- Express
- Java
- 공정능력
- GIT
- R
- Spring
- Today
- Total
목록nodejs (2)
DBILITY
2023.04.18 현재 " URI must include hostname, domain name, and tld " 이런 오류가 나온다. mongdb가입하고 free 500M을 사용하게 되었다. 정상적으로 절차를 끝내고 connection url로 접속을 하려하니 비번에 특수문자 안된다. https://docs.atlas.mongodb.com/troubleshoot-connection/#special-characters-in-connection-string-password Troubleshoot Connection Issues — MongoDB Atlas Docs Home → MongoDB AtlasThis page outlines common connection issues and possible r..
intellij를 사용해서 JavaScript->Node.js 프로젝트를 생성하면 npm init가 자동 실행된다. Terminal을 열어 npm install express를 설치하고, nodemon도 설치해 준다. 다음은 express서버의 기초 코드로 nodemon server.js로 실행했다. const express = require('express'); const app = express(); const port = process.env.PORT || 9090; app.listen(port, () => { console.log(`this server is listening port ${port}`); }); app.get('/hello',(req,res)=>{ //res.json({messag..