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
- debounce
- async
- RN업데이트
- Swift
- private-access-to-photos
- javascript
- 비동기
- named type
- no-permission-handler-detected
- react native
- react-native-image-picker
- axios
- RN새로운아키텍쳐
- react animation
- Hash-table
- ios
- react-native
- motion.div
- rn
- react
- React-Native업데이트
- Throttle
- hydration mismatch
- Promise
- animation
- await
- promise.all
- RN아키텍쳐
- CS
- react-native-permissions
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