Check Instagram Username Availability
- Install Firebase CLI globally
npm install -g firebase-tools
-
Create a Firebase Project using the Firebase Developer Console
-
Authenticate to your Firebase account
firebase login
# In the project root
npm install
# In the /functions dir
cd functions; npm install; cd -
Configure this app to use your Firebase project
firebase use --add
Firebase CLI actually setup eslint for this project with a pre-deploy lint hook.
Recommended editor: VS Code with Eslint plugin.
Deploy your project using
firebase deploy
Check package.json
scripts for more options.
This project is licensed under the MIT License