create-shopify-firebase-app 1.1.0 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +44 -14
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# create-shopify-firebase-app
|
|
2
2
|
|
|
3
|
-
>
|
|
3
|
+
> Build and run Shopify apps for free. Pay nothing until you have real traffic. One command. Zero framework. Fully serverless.
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/create-shopify-firebase-app)
|
|
6
6
|
[](https://www.npmjs.com/package/create-shopify-firebase-app)
|
|
@@ -117,7 +117,11 @@ shopify app dev
|
|
|
117
117
|
|
|
118
118
|
---
|
|
119
119
|
|
|
120
|
-
## Why Firebase
|
|
120
|
+
## Why Firebase?
|
|
121
|
+
|
|
122
|
+
**$0/month to run your Shopify app. No credit card. No server. No bill until you're big.**
|
|
123
|
+
|
|
124
|
+
Most Shopify app developers pay for hosting before they even have users. With Firebase, you deploy for free and only start paying when your app serves thousands of stores daily. Even at 50,000 installed stores, you're looking at ~$5/month. Try getting that from Vercel or Heroku.
|
|
121
125
|
|
|
122
126
|
| | `shopify app init` (Remix) | `create-shopify-firebase-app` |
|
|
123
127
|
|---|---|---|
|
|
@@ -128,7 +132,7 @@ shopify app dev
|
|
|
128
132
|
| **Auth** | `@shopify/shopify-app-remix` | Manual OAuth (140 lines, you own it) |
|
|
129
133
|
| **Build** | Webpack / Vite | `tsc` (TypeScript compiler, no bundler) |
|
|
130
134
|
| **Deploy** | Varies | `firebase deploy` (one command) |
|
|
131
|
-
| **Cost** | $5-25/month
|
|
135
|
+
| **Cost** | $5-25/month from day one | **$0/month** — free until you scale |
|
|
132
136
|
| **Framework knowledge** | Remix + React required | Express + HTML (that's it) |
|
|
133
137
|
| **Scaling** | Single server | Per-function auto-scaling (Cloud Run) |
|
|
134
138
|
| **GDPR webhooks** | Auto-handled | Included (ready for App Store) |
|
|
@@ -137,11 +141,11 @@ shopify app dev
|
|
|
137
141
|
|
|
138
142
|
### When to use this
|
|
139
143
|
|
|
144
|
+
- You want to **launch for free** and only pay when your app takes off
|
|
140
145
|
- Custom apps for a single merchant
|
|
141
146
|
- Public apps with simple admin UIs
|
|
142
147
|
- Teams already using Firebase / Google Cloud
|
|
143
148
|
- You want to understand every line of your app
|
|
144
|
-
- You want free/cheap serverless hosting
|
|
145
149
|
|
|
146
150
|
### When to use Remix instead
|
|
147
151
|
|
|
@@ -401,19 +405,45 @@ export { dailyCleanup } from "./cleanup";
|
|
|
401
405
|
|
|
402
406
|
---
|
|
403
407
|
|
|
404
|
-
##
|
|
408
|
+
## How Many Stores Can You Run for Free?
|
|
409
|
+
|
|
410
|
+
Firebase's free tier is generous. Here's what it actually means for a Shopify app:
|
|
411
|
+
|
|
412
|
+
### Per-store usage (typical Shopify app)
|
|
413
|
+
|
|
414
|
+
| Action | Function calls | Firestore reads | Firestore writes |
|
|
415
|
+
|--------|---------------|-----------------|------------------|
|
|
416
|
+
| Merchant opens admin dashboard | 5 | 5 | 0 |
|
|
417
|
+
| Webhooks (orders, inventory) | 5 | 5 | 2 |
|
|
418
|
+
| **Total per active store/day** | **~10** | **~10** | **~2** |
|
|
419
|
+
|
|
420
|
+
### Free tier capacity
|
|
421
|
+
|
|
422
|
+
| Firebase Resource | Free Limit | Stores Supported |
|
|
423
|
+
|-------------------|-----------|-----------------|
|
|
424
|
+
| Cloud Functions | 2M invocations/month (~66K/day) | **~6,600 daily active stores** |
|
|
425
|
+
| Firestore reads | 50K/day | **~5,000 daily active stores** |
|
|
426
|
+
| Firestore writes | 20K/day | **~10,000 daily active stores** |
|
|
427
|
+
| Hosting bandwidth | 360 MB/day | **~7,000 page loads/day** (CDN-cached after first load) |
|
|
428
|
+
|
|
429
|
+
**Bottleneck: Firestore reads at ~5,000 daily active stores.**
|
|
430
|
+
|
|
431
|
+
Not every installed merchant opens your app daily. With a typical 20% daily active rate:
|
|
432
|
+
|
|
433
|
+
> **Free tier supports ~25,000 installed stores** with normal usage patterns. That's $0/month.
|
|
434
|
+
|
|
435
|
+
### When you outgrow free (Blaze pay-as-you-go)
|
|
405
436
|
|
|
406
|
-
|
|
437
|
+
| Installed Stores | Daily Active | Monthly Cost |
|
|
438
|
+
|-----------------|-------------|-------------|
|
|
439
|
+
| 1 - 25,000 | up to 5,000 | **$0 (free)** |
|
|
440
|
+
| 50,000 | ~10,000 | **~$5/month** |
|
|
441
|
+
| 100,000 | ~20,000 | **~$15/month** |
|
|
442
|
+
| 500,000 | ~100,000 | **~$80/month** |
|
|
407
443
|
|
|
408
|
-
|
|
409
|
-
|----------|-----------|
|
|
410
|
-
| Cloud Functions | 2M invocations/month |
|
|
411
|
-
| Firestore reads | 50K/day |
|
|
412
|
-
| Firestore writes | 20K/day |
|
|
413
|
-
| Hosting storage | 10 GB |
|
|
414
|
-
| Hosting transfer | 360 MB/day |
|
|
444
|
+
Compare that to Vercel/Heroku at **$25-100/month from day one**, before you even have your first user.
|
|
415
445
|
|
|
416
|
-
|
|
446
|
+
No credit card required to start. No server to manage. No bill until you're successful.
|
|
417
447
|
|
|
418
448
|
---
|
|
419
449
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-shopify-firebase-app",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Create Shopify apps powered by Firebase — serverless, lightweight, zero-framework. The official alternative to Remix for Shopify + Firebase developers.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"shopify",
|