Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- RN아키텍쳐
- react animation
- motion.div
- Promise
- animation
- Throttle
- debounce
- CS
- async
- axios
- ios
- Swift
- promise.all
- react native
- RN업데이트
- RN새로운아키텍쳐
- javascript
- react-native-image-picker
- hydration mismatch
- rn
- await
- react
- private-access-to-photos
- 비동기
- react-native
- no-permission-handler-detected
- Hash-table
- React-Native업데이트
- react-native-permissions
- named type
Archives
- Today
- Total
목록node.js (1)
하루살이 개발일지
[Node.js] readline 모듈로 사용자에게 input값을 받아와 출력해주기
💡 readline 모듈이란? Node.js 환경에서 사용자로부터 입력을 받는 데에 주로 사용됨 💡 간단한 예제 및 설명 const readline = require('readline'); const rl = readline.createInterface({ input: process.stdin, output: process.stdout }); rl.question('당신의 이름은 무엇인가요? ', (answer) => { console.log(`안녕하세요, ${answer}님!`); rl.close(); }); require 메서드 다른 파일이나 모듈을 불러오는 함수 require('readline') → ‘readline’ 모듈을 불러와 readline 모듈의 속성을 사용할 수 있게 해줌 readlin..
웹개발/Node.js
2023. 6. 13. 20:52