Framework/✨ Google Firebase
-
1. problemError : Cannot find module 'express' 2. solutionI modified the package.jsonYou should enter the express information in dependencies.the package.json is located in functions(folder).your firebase project name > functions > package.json package.json12345678910111213141516171819202122{ "name": "functions", "description": "Cloud Functions for Firebase", "scripts": { "lint": "eslint .", "se..
[solved] firebase Cannot find module 'express'1. problemError : Cannot find module 'express' 2. solutionI modified the package.jsonYou should enter the express information in dependencies.the package.json is located in functions(folder).your firebase project name > functions > package.json package.json12345678910111213141516171819202122{ "name": "functions", "description": "Cloud Functions for Firebase", "scripts": { "lint": "eslint .", "se..
2018.11.26 -
Intro안녕하세요. 이사작전의 개발팀 플랫폼공작소입니다. 오늘은 Firebase Cloud function을 이용하여 Firebase SEO 이슈를 해결하는 방법을 공유하려합니다. 포스팅에 reference를 충실히 남깁니다. 모두 참고하였던 문서이며 정상적으로 동작하는 문서이니 참고하시면 해결하실 수 있습니다. 이슈 발생Firebase로 개발된 프로젝트에서 SEO문제가 발생구글에서는 노출이 정상적으로 이뤄지나,네이버 웹 마스터 분석 결과, 제목이 같은 페이지가 다수 발견 해결Firebase SEO이슈를 function과 선례를 응용하여 해결https://www.google.co.kr/search?q=firebase+function+seo&oq=firebase+function+seo&aqs=chrome..
[Firebase] Cloud function을 이용하여 Firebase SEO 이슈를 해결하는 방법Intro안녕하세요. 이사작전의 개발팀 플랫폼공작소입니다. 오늘은 Firebase Cloud function을 이용하여 Firebase SEO 이슈를 해결하는 방법을 공유하려합니다. 포스팅에 reference를 충실히 남깁니다. 모두 참고하였던 문서이며 정상적으로 동작하는 문서이니 참고하시면 해결하실 수 있습니다. 이슈 발생Firebase로 개발된 프로젝트에서 SEO문제가 발생구글에서는 노출이 정상적으로 이뤄지나,네이버 웹 마스터 분석 결과, 제목이 같은 페이지가 다수 발견 해결Firebase SEO이슈를 function과 선례를 응용하여 해결https://www.google.co.kr/search?q=firebase+function+seo&oq=firebase+function+seo&aqs=chrome..
2018.09.11 -
안녕하세요. 말랑고양입니다. 파이어베이스 초기 세팅 방법을 공유합니다. 궁금한 점이 있다면 댓글 남겨주세요. Messaging exampleInstall the Node.JS framework (here the link to download for your system). I show you how to do it with Linux but the procedure should be the same.Using command-line install firebase CLI using the command: npm install -g firebase-tools(may need sudo if it fails).Type firebase login. This will open your browser and let ..
[firebase web] 파이어베이스 초기 세팅, 시작 방법안녕하세요. 말랑고양입니다. 파이어베이스 초기 세팅 방법을 공유합니다. 궁금한 점이 있다면 댓글 남겨주세요. Messaging exampleInstall the Node.JS framework (here the link to download for your system). I show you how to do it with Linux but the procedure should be the same.Using command-line install firebase CLI using the command: npm install -g firebase-tools(may need sudo if it fails).Type firebase login. This will open your browser and let ..
2018.09.10 -
안녕하세요. 이사작전.com의 개발자 말랑고양입니다.오늘은 Firebase web의 CRUD를 다뤄볼까 합니다.레퍼런스 문서가 공개되어 있음에도 이것을 굳이 다루는 이유는,CRUD의 방법이 너무나도 많고 파편화 되어 있기 때문입니다.저 스스로도 그것에 대하여 정리할 겸, 비법 포스팅을 공유하려합니다. Firebase web 검색하기저의 경우 아래와 같은 기능이 필요하였습니다. 깔끔하게, 실제로 사용하고 있는 코드를 공개합니다. function findParticipant(){ var searchWord = $("#searchWord").val(); //검색어 firebase.database().ref('/posts/줄눈/경기도/').orderByChild("bsTitle").equalTo(searchWo..
[Firebase web] CRUD 여러가지 방법안녕하세요. 이사작전.com의 개발자 말랑고양입니다.오늘은 Firebase web의 CRUD를 다뤄볼까 합니다.레퍼런스 문서가 공개되어 있음에도 이것을 굳이 다루는 이유는,CRUD의 방법이 너무나도 많고 파편화 되어 있기 때문입니다.저 스스로도 그것에 대하여 정리할 겸, 비법 포스팅을 공유하려합니다. Firebase web 검색하기저의 경우 아래와 같은 기능이 필요하였습니다. 깔끔하게, 실제로 사용하고 있는 코드를 공개합니다. function findParticipant(){ var searchWord = $("#searchWord").val(); //검색어 firebase.database().ref('/posts/줄눈/경기도/').orderByChild("bsTitle").equalTo(searchWo..
2018.08.23 -
How to use the firebase .indexOn 1. DB Example ) posts >category > "USA" >LGhGFr86ErZBaEaNtAd >name : "brown"point : "100"... "LA" >LGhGFr86ErZBaEaNtAd >name : "brown"point : "100"... LGhGFr86ErZBaEaNtAd is a Key (some posts)--> ps. var newPostKey = firebase.database().ref().child('posts').push().key; 2. indexOn Example) "posts" : {"category": {"$location": {".indexOn": ["point"]}}} good luck! #..
[Firebase] How to use the firebase .indexOnHow to use the firebase .indexOn 1. DB Example ) posts >category > "USA" >LGhGFr86ErZBaEaNtAd >name : "brown"point : "100"... "LA" >LGhGFr86ErZBaEaNtAd >name : "brown"point : "100"... LGhGFr86ErZBaEaNtAd is a Key (some posts)--> ps. var newPostKey = firebase.database().ref().child('posts').push().key; 2. indexOn Example) "posts" : {"category": {"$location": {".indexOn": ["point"]}}} good luck! #..
2018.07.06 -
firebase에 set을 사용하면DB가 초기화 되는 현상을 볼 수 있습니다.. ;; 새로운 값 하나만 추가하는 것이라면아래와 같은 코드를 사용하면 됩니다. 12345 var uid = firebase.auth().currentUser.uid; firebase.database().ref().child('/user-info/' + uid).update({ location: "안녕" });Colored by Color Scriptercs #reference : https://firebase.google.com/docs/database/web/read-and-write?hl=ko#reference : https://stackoverflow.com/questions/38923644/firebase-update-..
[firebase] DB에 추가로 하나만 업데이트하는 방법?firebase에 set을 사용하면DB가 초기화 되는 현상을 볼 수 있습니다.. ;; 새로운 값 하나만 추가하는 것이라면아래와 같은 코드를 사용하면 됩니다. 12345 var uid = firebase.auth().currentUser.uid; firebase.database().ref().child('/user-info/' + uid).update({ location: "안녕" });Colored by Color Scriptercs #reference : https://firebase.google.com/docs/database/web/read-and-write?hl=ko#reference : https://stackoverflow.com/questions/38923644/firebase-update-..
2018.05.10