이제 본격적으로 Node.js 서버에서 회원가입 코드를 작성해 보겠습니다. 1. aws-sdk 설치 npm install aws-sdk 위 명령어로 AWS SDK를 설치합니다. 2. 자격증명 설정 const AWS = require('aws-sdk'); AWS.config.region = 'ap-northeast-2'; AWS.config.credentials = new AWS.CognitoIdentityCredentials({ IdentityPoolId: 'ap-northeast-2:xxxxxxxx-xx-xxxxxx' }); IdentityPoolId는 아래 화면에서 확인할 수 있습니다. (설정은 전편을 참고해주세요.) 3. 회원가입 코드 작성 exports.signUp = (email, passwor..