일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- JavaScript
- nodejs
- react
- JS
- 코틀린
- 옵션메뉴꾸미기
- 자바스크립트
- state_checked
- bottomNav
- Node
- Dialog
- Menu
- ContextAPI
- redux/toolkit
- 팝업메뉴 꾸미기
- Redux
- Hooks
- itemBackground
- custom
- 리액트
- readAsDataURL
- hoos
- framework
- 커스텀옵션메뉴
- toolkit
- Android
- 팝업메뉴
- 안드로이드
- javaSrcript
- 메뉴클릭
- Today
- Total
목록nodejs (2)
대기업을 향한 디벨롭 블로그

nodemailer 모듈을 이용하여 이메일을 보내볼거다. https://nodemailer.com/about/ Nodemailer :: Nodemailer Nodemailer Nodemailer is a module for Node.js applications to allow easy as cake email sending. The project got started back in 2010 when there was no sane option to send email messages, today it is the solution most Node.js users turn to by default. npm i nodemailer.com nodemailer공식 사이트이다. 이 문서를 참고하여 포스팅한다. 일..

nodejs로 서버를 만들면서 DB가 아닌 JSON파일에 데이터를 저장해볼거다. 일단 기본적인 셋팅을 해주겠다. // index.js const express = require('express'); const app = express(); app.listen(5001 , ()=>{ console.log('sercer oON '); }) 정말 간단하게 fs를 테스트 해볼거라 express를 가져와 서버를 5001번 포트에 열어준다. 그리고 const fs = require('fs'); fs를 불러와준다. fs는 FileSystem의 약자이다. File의 관련된 모듈이라고 생각하면된다. 그리고 data.json파일을 폴더에 추가해주자. //data.json { "name" : "mang", "age" : "..