일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- install
- 스프링부트
- restapi
- development
- tcping
- Tomcat #SpringFramework
- SpringInitializer
- springboot #controller #jsp
- 웹개발
- 환경변수
- Oracle11g
- 스프링시큐리티
- ojdbc
- oracle
- RESTful
- SpringSecurity
- apache
- Developer
- postman
- 스프링부트 #springboot #project #Intellij
- HATEOAS
- sqldeveloper
- springboot
- Database
- mysql
- undefined
- Maven
- Web
- mssql
- IntelliJ
- Today
- Total
목록Node.js (2)
여백에 도장 찍기
1. What is yarn ? Yarn is a package manager that doubles down as project manager. -> yanr은 프로젝트 관리자 역할을 하는 패키지 관리자. 2. Why yarn ? : 기존 node_module 의 문제점 때문 (용량 차지, 속도 저하) 참고 ) https://yarnpkg.com/features/pnp#the-node_modules-problem Plug'n'Play An overview of Plug'n'Play, a powerful and innovative installation strategy for Node. yarnpkg.com 2. yarn 설치 #> node.js 이미 설치되어 있으므로 --ignore-dependenci..
1. brew를 통해 Node.js 설치 >>> brew install node >>> node -v 10:35.30 화 1 11 2022 >>> v17.3.0 >>> npm -v 10:35.33 화 1 11 2022 >>> 8.3.0 2. 간단하게 Node.js 실행해보기 >>> mkdir ~/projects >>> cd ~/projects >>> vi hello-world.js const http = require('http'); const hostname = '127.0.0.1'; const port = 3000; const server = http.createServer((req, res) => { res.statusCode = 200; res.setHeader('Content-Type', 'te..