forked from pubkey/rxdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpremium.html
728 lines (679 loc) · 31.8 KB
/
premium.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
<!DOCTYPE html>
<html
lang="en"
prefix="og: https://ogp.me/ns#"
>
<head>
<meta charset="utf-8">
<title>RxDB - Premium Plugins</title>
<link
rel="canonical"
href="https://rxdb.info/premium.html"
/>
<meta
name="description"
content="RxDB plugins for professionals. FAQ, pricing and license."
/>
<meta
property="og:title"
content="RxDB - A client side, offline-first, reactive database for JavaScript Applications"
/>
<meta
name="theme-color"
content="#e6008d"
/>
<meta
name="twitter:site"
content="@rxdbjs"
/>
<meta
name="viewport"
content="width=device-width,initial-scale=1.0"
/>
<link
rel="stylesheet"
href="styles/variables.css"
/>
<link
rel="stylesheet"
href="styles/landingpage.css"
/>
<link
rel="icon"
href="./files/logo/logo.svg"
sizes="any"
type="image/svg+xml"
/>
<link
rel="apple-touch-icon"
href="./files/logo/icon.png"
/>
<script
src="analytics.js"
defer
></script>
</head>
<body>
<header>
<a href="/">
<div class="logo">
<img
src="./files/logo/logo.svg"
alt="RxDB"
width="60"
height="60"
/>
<div class="text">RxDB</div>
</div>
</a>
<div class="right">
<a
href="/quickstart.html"
target="_blank"
class="text"
onclick="window.trigger('goto_docs', 0.20)"
>Docs</a>
<a
href="https://github.com/pubkey/rxdb"
rel="noopener"
target="_blank"
class="text"
onclick="window.trigger('goto_code', 0.20)"
>Code</a>
<a
href="https://rxdb.info/chat.html"
rel="noopener"
target="_blank"
class="text"
onclick="window.trigger('join_chat', 0.20)"
>Chat</a>
<a
href="https://github.com/pubkey/rxdb"
rel="noopener"
target="_blank"
onclick="window.trigger('goto_code', 0.20)"
>
<div class="star-at-github bg-gradient-right-bottom">
<div class="star-at-github-inner">
<img src="./files/icons/github-star.svg" />
<div class="star-at-github-text">at GitHub</div>
</div>
</div>
</a>
<div class="clear"></div>
</div>
<div class="clear"></div>
</header>
<div class="header-space"></div>
<div class="block first">
<div class="content centered">
<h2><b class="underline">RxDB</b> Premium Plugins</h2>
<p style="width: 80%;">
To make RxDB a sustainable project, some plugins are not part of the RxDB open source project.
Instead they are part of the <b>rxdb-premium</b> package which must be purchased.<br />
Professional developers use these to get the best <b>performance</b> and the most out of RxDB.
</p>
<div class="premium-blocks">
<a
href="./rx-storage-opfs.html"
target="_blank"
>
<div class="premium-block hover-shadow-middle bg-gradient-right-top">
<div class="premium-block-inner">
<h4>RxStorage OPFS</h4>
<p>Currently the fastest RxStorage that can be used in the browser. Based on the <b>File
System Access API</b>.</p>
</div>
</div>
</a>
<a
href="./rx-storage-indexeddb.html"
target="_blank"
>
<div class="premium-block hover-shadow-middle bg-gradient-left-top">
<div class="premium-block-inner">
<h4>RxStorage IndexedDB</h4>
<p>A really fast storage based on <b>IndexedDB</b>. Made to be used in browsers.</p>
</div>
</div>
</a>
<a
href="./rx-storage-sqlite.html"
target="_blank"
>
<div class="premium-block hover-shadow-middle bg-gradient-right-top">
<div class="premium-block-inner">
<h4>RxStorage SQLite</h4>
<p>
A really fast storage based on <b>SQLite</b>.
Used with <b>Node.js</b>, <b>Electron</b>, <b>React Native</b>, <b>Cordova</b>
or <b>Capacitor</b>.
</p>
</div>
</div>
</a>
<a
href="./rx-storage-sharding.html"
target="_blank"
>
<div class="premium-block hover-shadow-middle bg-gradient-left-top">
<div class="premium-block-inner">
<h4>RxStorage Sharding</h4>
<p>
A wrapper around any other storage that improves performance by applying the sharding
technique.
</p>
</div>
</div>
</a>
<a
href="./storage-migration.html"
target="_blank"
>
<div class="premium-block hover-shadow-middle bg-gradient-right-top">
<div class="premium-block-inner">
<h4>Storage Migration</h4>
<p>
A plugins that migrates data from one storage to another. Use this when you want to
change the used RxStorage or to migrate data from an older RxDB major version.
</p>
</div>
</div>
</a>
<a
href="./rx-storage-memory-synced.html"
target="_blank"
>
<div class="premium-block hover-shadow-middle bg-gradient-left-top">
<div class="premium-block-inner">
<h4>RxStorage Memory Synced</h4>
<p>
A wrapper around any other storage that creates a synced in-memory copy
which improves performance for the initial page load time and write&read operations.
</p>
</div>
</div>
</a>
<a
href="./query-optimizer.html"
target="_blank"
>
<div class="premium-block hover-shadow-middle bg-gradient-right-top">
<div class="premium-block-inner">
<h4>Query Optimizer</h4>
<p>
A tool to find the best index for a given query. You can use this during build time to
find the best index and then use that index during runtime.
</p>
</div>
</div>
</a>
<a
href="./rx-storage-localstorage-meta-optimizer.html"
target="_blank"
>
<div class="premium-block hover-shadow-middle bg-gradient-left-top">
<div class="premium-block-inner">
<h4>RxStorage Localstorage Meta Optimizer</h4>
<p>
A wrapper around any other storage which optimizes the initial page load one
by using localstorage for meta key-value document. Only works in <b>browsers</b>.
</p>
</div>
</div>
</a>
<a
href="./rx-storage-shared-worker.html"
target="_blank"
>
<div class="premium-block hover-shadow-middle bg-gradient-right-top">
<div class="premium-block-inner">
<h4>RxStorage SharedWorker</h4>
<p>
A RxStorage wrapper to run the storage inside of a SharedWorker which improves
the performance by taking CPU load await from the main process. Used in <b>browsers</b>.
</p>
</div>
</div>
</a>
<a
href="./rx-storage-worker.html"
target="_blank"
>
<div class="premium-block hover-shadow-middle bg-gradient-left-top">
<div class="premium-block-inner">
<h4>RxStorage Worker</h4>
<p>
A RxStorage wrapper to run the storage inside of a Worker which improves
the performance by taking CPU load await from the main process.
</p>
</div>
</div>
</a>
<a
href="./encryption.html"
target="_blank"
>
<div class="premium-block hover-shadow-middle bg-gradient-right-top">
<div class="premium-block-inner">
<h4>WebCrypto Encryption</h4>
<p>
A faster and more secure encryption plugin based on the Web Crypto API.
</p>
</div>
</div>
</a>
<a
href="./rx-storage-filesystem-node.html"
target="_blank"
>
<div class="premium-block hover-shadow-middle bg-gradient-left-top">
<div class="premium-block-inner">
<h4>RxStorage Filesystem Node</h4>
<p>
A fast RxStorage based on the <b>Node.js</b> Filesystem.
</p>
</div>
</div>
</a>
<div class="clear"></div>
</div>
</div>
</div>
<div class="block dark">
<div class="content centered">
<h2>Estimated Price <b class="underline">Calculator</b></h2>
<div class="price-calculator">
<div class="price-calculator-inner">
<form id="price-calculator-form">
<div class="field">
<label for="developer-count">Team Size:</label>
<div class="input">
<input
type="number"
name="developer-count"
min="1"
max="100"
required
onkeydown="return event.keyCode !== 69 && event.keyCode !== 189 && event.keyCode !== 190"
/>
<div class="suffix">Developer(s)</div>
</div>
</div>
<div class="field">
<label for="home-country">Company Home Country:</label>
<div class="input">
<input
list="home-country"
name="home-country"
pattern="[A-Za-z \-]{2,}"
required
style="width: 100%; max-width: 240px;"
autocomplete="off"
>
<datalist id="home-country">
<!-- filled by premium.ts -->
</datalist>
</div>
</div>
<div class="field">
<label for="company-age">Company Age:</label>
<div class="input">
<select
name="company-age"
id="company-age"
required
>
<option
value=""
selected="true"
disabled="disabled"
></option>
<option value="more-than-3">Older</option>
<option value="less-than-3">Younger</option>
</select>
<div class="suffix">than 3 Years</div>
</div>
</div>
<div class="packages">
<div class="package bg-gradient-left-top">
<div class="package-inner">
<input
name="package-browser"
type="checkbox"
class="package-checkbox"
checked
>
<h4>Browser Package</h4>
<ul>
<li>
<a
href="./rx-storage-opfs.html"
target="_blank"
>RxStorage OPFS</a>
</li>
<li>
<a
href="./rx-storage-indexeddb.html"
target="_blank"
>RxStorage IndexedDB</a>
</li>
<li>
<a
href="./rx-storage-worker.html"
target="_blank"
>RxStorage Worker</a>
</li>
<li>
<a
href="./encryption.html"
target="_blank"
>WebCrypto Encryption</a>
</li>
</ul>
</div>
</div>
<div class="package bg-gradient-left-top">
<div class="package-inner">
<input
name="package-native"
type="checkbox"
class="package-checkbox"
checked
>
<h4>Native Package</h4>
<ul>
<li>
<a
href="./rx-storage-sqlite.html"
target="_blank"
>RxStorage SQLite</a>
</li>
<li>
<a
href="./rx-storage-filesystem-node.html"
target="_blank"
>RxStorage Filesystem Node</a>
</li>
</ul>
</ul>
</div>
</div>
<div class="package bg-gradient-left-top">
<div class="package-inner">
<input
name="package-performance"
type="checkbox"
class="package-checkbox"
checked
>
<h4>Performance Package</h4>
<ul>
<li>
<a
href="./rx-storage-sharding.html"
target="_blank"
>RxStorage Sharding</a>
</li>
<li>
<a
href="./rx-storage-memory-synced.html"
target="_blank"
>RxStorage Memory Synced</a>
</li>
<li>
<a
href="./query-optimizer.html"
target="_blank"
>Query Optimizer</a>
</li>
<li>
<a
href="./rx-storage-localstorage-meta-optimizer.html"
target="_blank"
>RxStorage Localstorage Meta Optimizer</a>
</li>
<li>
<a
href="./rx-storage-shared-worker.html"
target="_blank"
>RxStorage Shared Worker</a>
</li>
</ul>
</div>
</div>
<div class="package bg-gradient-left-top">
<div class="package-inner">
<input
name="package-utilities"
type="checkbox"
class="package-checkbox"
checked
disabled
>
<h4>Utilities Package <b>always included</b></h4>
<ul>
<li>
<a
href="./storage-migration.html"
target="_blank"
>Storage migration</a>
</li>
</ul>
</div>
</div>
<div class="package bg-gradient-left-top">
<div class="package-inner">
<input
name="package-sourcecode"
type="checkbox"
class="package-checkbox"
>
<h4>Source Code access</h4>
<p>
Get read access to the unminified plain source code of all purchased
packages.<br />
</p>
</div>
</div>
</div>
<div
class="button"
id="price-calculator-submit"
>Estimate Price</div>
</form>
<div
id="price-calculator-result"
style="display: none;"
>
<hr />
<h4>Estimated Price:</h4>
<table>
<tr>
<th>Estimated Price Per Developer per Month</th>
<td>
<a
id="total-per-developer-per-month"
target="_blank"
rel="nofollow noopener noreferrer"
title="Click to convert to other currency"
href="#"
>XX €</a>
</td>
</tr>
<tr>
<th>Estimated Total Price per Year</th>
<td>
<a
id="total-per-year"
target="_blank"
rel="nofollow noopener noreferrer"
title="Click to convert to other currency"
href="#"
>XX €</a>
</td>
</tr>
</table>
<div class="proceed-hint">
Fill out
<a href="#premium-request-form-block"><b>this form</b></a>
to proceed.
</span>
</div>
</div>
</div>
</div>
</div>
<div
class="block"
id="faq"
>
<div class="content centered premium-faq">
<h2>F.A.Q. <b>(click to toggle)</b></h2>
<details>
<summary>
Do I need the Premium Plugins?
</summary>
When you start using RxDB, you do not need access to the premium plugins. Most use cases can be
implemented with the Open Core part of RxDB. There are many <a
href="./rx-storage.html"
target="_blank"
>RxStorage</a>
options and all core plugins that are required for replication, schema validation, encryption and so
on,
are totally free. As soon as your application is more then a side project, it is pretty easy to
switch
to RxDB Premium Plugins by just changing a few lines of configuration.<br />
The main benefit of the Premium Plugins is <b>performance</b>. The Premium RxStorage implementations
have a better performance
so reading and writing data is much faster especially on low-end devices. You can find a performance
comparison <a
href="./rx-storage-performance.html"
target="_blank"
>here</a>.
Also there are additional Premium Plugins that can be used to further optimize the performance of
your
application like the <a
href="./query-optimizer.html"
target="_blank"
>Query Optimizer</a> or the <a
href="./rx-storage-sharding.html"
target="_blank"
>Sharding</a> plugin.
</details>
<details>
<summary>
Why is it not for free?
</summary>
The development of RxDB started in 2016 and after all these years it became clear that big
implementation and improvement steps will not be done by the RxDB community. While the community
submits
valuable pull requests, they are mostly small improvements or bugfixes for specific edge case. Big
rewrites and optimizations that require a big effort have only be done by the RxDB maintainer.<br />
Selling RxDB Premium ensures that there will be always an incentive for someone to add features,
keep
everything up to date and to further improve and optimize the codebase. This gives the user the
confidence that RxDB is a <b>future proof</b> tech stack to build on which lets RxDB stand out
compared
to similar technologies.
</details>
<details>
<summary>
Why is there no free trial period?
</summary>
<ul>
<li>
RxDB is written in JavaScript and the code of the Premium Plugins does not contain any
tracking or measurement code that would send information from your application
to our servers in production mode. As soon as someone has the code on his computer,
the maintainer has no chance to really ensure that after a free trial period the code is
no longer used and deleted.
</li>
<li>
Before you can use the Premium Plugins you have to debate and sign a license agreement with
the
maintainer. This is a sophisticated process that creates overhead which distracts the
maintainer
from writing RxDB code. So handling trial period users is just not manageable. For this
reason
there is also no monthly subscriptions. Premium access must be paid <b>per year</b>.
</li>
</ul>
</details>
<details>
<summary>
Why is it not cheaper?
</summary>
The price of the Premium Plugins is chosen in way that ensures that there can be always one person
that
develops RxDB <b>full time</b>.
Compared to other JavaScript frameworks and developer tools, RxDB satisfies an edge use case for
people
that want to store data inside of their application on the users device. Most web developers do not
need
to do that and rely on the traditional client-server stack. So RxDB cannot be sold to that many
people
which increases the price.
</details>
<details>
<summary>
Can I install/build the premium plugins in my CI?
</summary>
<b>Yes</b> you can safely install and use the Premium Plugins in your CI without additional payment.
</details>
<details>
<summary>
Can I get a discount?
</summary>
Discounts are provided for people that have made a significant contribution to RxDB or one of RxDB's
dependencies or to the Open Source Community overall.
Also for private personal projects there is the option to solve one of the
<a
href="https://github.com/pubkey/rxdb/blob/master/orga/premium-tasks.md"
target="_blank"
>Premium Tasks</a>
to get 3 years access to the Premium Plugins.
</details>
<details>
<summary>
Why payment methods are accepted?
</summary>
<b>Stripe.com</b> is used as payment processor so most known payment options like credit card,
PayPal, SEPA transfer and others are available.
A list of all options can be found <a
href="https://stripe.com/docs/payments/payment-methods/overview"
title="stripe payment options"
target="_blank"
>here</a>.
</details>
</div>
</div>
<div
class="block dark"
id="premium-request-form-block"
>
<div class="content centered premium-request">
<h2>Request Premium <b class="underline">Form</b></h2>
<ol>
<li>Fill out the form below.</li>
<li>I will send you a license agreement that you can sign online.</li>
<li>After signing I will send you an invoice.</li>
<li>After payment I will send you an access token.</li>
</ol>
<iframe
id="request-premium-form"
src="https://webforms.pipedrive.com/f/6rAw4GGXeleL4JGz2Vn0kv0gbALmQXruUXRjUOlDqG3lB9UZ8n4OOSmHBNDJ187e5t"
>
Your browser doesn't support iframes, <a
href="https://webforms.pipedrive.com/f/6rAw4GGXeleL4JGz2Vn0kv0gbALmQXruUXRjUOlDqG3lB9UZ8n4OOSmHBNDJ187e5t"
rel="nofollow"
>go here</a>
</iframe>
</div>
</div>
<script
src="premium.js"
defer
></script>
</body>
</html>