본문 바로가기

programming/db, web, node.js

firebase webapp 개발

https://asoe72.tistory.com/21

 

firebase webapp 개발 - 01. 생성과 초기화

참고자료: https://www.youtube.com/watch?v=rQvOAnNvcNQ&t=627s https://firebase.google.com/docs/web/setup?sdk_version=v9&authuser=0 자바스크립트 프로젝트에 Firebase 추가  | Firebase Documentation 의..

asoe72.tistory.com

https://asoe72.tistory.com/22

 

firebase webapp 개발 - 02. realtime-database 생성

참고자료: https://firebase.google.com/docs/database/web/start?hl=ko 자바스크립트에서 설치 및 설정  | Firebase Documentation 의견 보내기 자바스크립트에서 설치 및 설정 Firebase 실시간 데이터베이스는..

asoe72.tistory.com

https://asoe72.tistory.com/23

 

firebase webapp 개발 - 03. real-time database get, set

아래와 같이 index.js에 database get 코드를 삽입한다. ... // TODO: Add SDKs for Firebase products that you want to use // https://firebase.google.com/docs/web/setup#available-libraries import { getDa..

asoe72.tistory.com

https://asoe72.tistory.com/25

 

firebase webapp 개발 - 04. debugging

DevTools에서 brakepoint를 걸어 trace를 할 때는 아래와 같이 webpack.config.js 파일을 만들고 devtool 옵션을 지정한다. webpack.config.js const path = require('path'); module.exports = { devtool: 'eval-..

asoe72.tistory.com