본문 바로가기
728x90

개발430

Algolia 학습하기 현재 나는 1인 개발자이고, 서버를 개발할 수 있는 능력이 되지 않는 등등 여건이 어려운 것이 많다. 나와 비슷한 사람들 또는 많은 스타트업에서는 Flutter + Firebase 로 개발을 진행할 것이다. 그러나 Firebase의 단점.. Nosql로 검색 기능이 강력하지 않다는 것이다.("Fulltext search를 지원하지 않는다" 라고 Firebase 공식 페이지에서 나와있음) 그래서 그 중에 많은 사람들이 사용하고 있다는 Algolia 를 통해서 검색엔진을(거창하지만 사실은 검색창) 구현해볼 예정이다. 영어가 꽤 많은터라 번역을 조금씩 해보기로 했다. 사실 혼자 공부해서 사용하고 끝낼 예정이었고, 이렇게 블로깅 할 생각은 없었는데 pub.dev에서 다운로드한 flutter package가 fi.. 2022. 1. 20.
Firebase function(공식 깃허브) https://github.com/firebase/functions-samples GitHub - firebase/functions-samples: Collection of sample apps showcasing popular use cases using Cloud Functions for Firebase Collection of sample apps showcasing popular use cases using Cloud Functions for Firebase - GitHub - firebase/functions-samples: Collection of sample apps showcasing popular use cases using Cloud F... github.com 2022. 1. 15.
function 중요 팁(unexpected token -> async await) https://stackoverflow.com/questions/68451557/google-firebase-function-tutorial-unexpected-token google firebase function tutorial unexpected token => I have done some googling and haven't found an answer to my question. I am following the tutorial for google firebase functions here and have copied index.js exactly from the GitHub repository link... stackoverflow.com 2022. 1. 14.
firebase index.js 예제 const functions = require('firebase-functions'); // // Create and Deploy Your First Cloud Functions // // https://firebase.google.com/docs/functions/write-firebase-functions // exports.helloWorld = functions.region('asia-northeast3').https.onRequest((request, response) => { response.send("Hello from Firebase!"); }); exports.addMessage = functions.region('asia-northeast3').https.onRequest(async (.. 2022. 1. 14.
728x90